2017-10-18 249 views
0

我有Anaconda 5.0,Windows 10安裝Tensorflow後的pip安裝問題

我在Anaconda提示中安裝了Tensorflowpip install tensorflow

安裝成功。 website上建議的測試按預期工作。

但現在我不能安裝任何其他包與pip install。例如,當我運行:

pip install memory-profiler我得到:

Exception: 
Traceback (most recent call last): 
    File "C:\Python\Anaconda3\lib\site-packages\pip\basecommand.py", line 215, in main 
    status = self.run(options, args) 
    File "C:\Python\Anaconda3\lib\site-packages\pip\commands\install.py", line 335, in run 
    wb.build(autobuilding=True) 
    File "C:\Python\Anaconda3\lib\site-packages\pip\wheel.py", line 749, in build 
    self.requirement_set.prepare_files(self.finder) 
    File "C:\Python\Anaconda3\lib\site-packages\pip\req\req_set.py", line 380, in prepare_files 
    ignore_dependencies=self.ignore_dependencies)) 
    File "C:\Python\Anaconda3\lib\site-packages\pip\req\req_set.py", line 554, in _prepare_file 
    require_hashes 
    File "C:\Python\Anaconda3\lib\site-packages\pip\req\req_install.py", line 278, in populate_link 
    self.link = finder.find_requirement(self, upgrade) 
    File "C:\Python\Anaconda3\lib\site-packages\pip\index.py", line 465, in find_requirement 
    all_candidates = self.find_all_candidates(req.name) 
    File "C:\Python\Anaconda3\lib\site-packages\pip\index.py", line 423, in find_all_candidates 
    for page in self._get_pages(url_locations, project_name): 
    File "C:\Python\Anaconda3\lib\site-packages\pip\index.py", line 568, in _get_pages 
    page = self._get_page(location) 
    File "C:\Python\Anaconda3\lib\site-packages\pip\index.py", line 683, in _get_page 
    return HTMLPage.get_page(link, session=self.session) 
    File "C:\Python\Anaconda3\lib\site-packages\pip\index.py", line 811, in get_page 
    inst = cls(resp.content, resp.url, resp.headers) 
    File "C:\Python\Anaconda3\lib\site-packages\pip\index.py", line 731, in __init__ 
    namespaceHTMLElements=False, 
TypeError: parse() got an unexpected keyword argument 'transport_encoding' 

我怎樣才能解決這個問題?運行後


的問題仍然存在:

conda upgrade pip

此外,通過羅密歐,here,所提供的解決方案並不爲我工作。

+0

的可能的複製[PIP拋出類型錯誤:解析()嘗試時得到了一個意想不到的關鍵字參數 '運輸\ _encoding'安裝新的軟件包](https://stackoverflow.com/questions/46499808/pip-throws-typeerror-parse-got-an-unexpected-keyword-argument-transport-enco) – Goyo

回答

1

運行解決:

conda install --force html5lib

(信用:邁克·蘭澤塔)