這篇文章主要介紹怎么解決安裝完tensorflow后pip無(wú)法使用的問(wèn)題,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

Win8,ANACONDA3(64-bit),Python3.6.2。ANACONDA Prompt中不能用pip命令安裝包,并且是在安裝了TensorFlow后才發(fā)生的。
報(bào)錯(cuò)如下:
F:\360Downloads>pip install --upgrade pip Exception: Traceback (most recent call last): File "E:\tools\anaconda\py3\lib\site-packages\pip\basecommand.py", line 215, in main status = self.run(options, args) File "E:\tools\anaconda\py3\lib\site-packages\pip\commands\install.py", line 335, in run wb.build(autobuilding=True) File "E:\tools\anaconda\py3\lib\site-packages\pip\wheel.py", line 749, in build self.requirement_set.prepare_files(self.finder) File "E:\tools\anaconda\py3\lib\site-packages\pip\req\req_set.py", line 380, in prepare_files ignore_dependencies=self.ignore_dependencies)) File "E:\tools\anaconda\py3\lib\site-packages\pip\req\req_set.py", line 487, in _prepare_file req_to_install, finder) File "E:\tools\anaconda\py3\lib\site-packages\pip\req\req_set.py", line 428, in _check_skip_instal led req_to_install, upgrade_allowed) File "E:\tools\anaconda\py3\lib\site-packages\pip\index.py", line 465, in find_requirement all_candidates = self.find_all_candidates(req.name) File "E:\tools\anaconda\py3\lib\site-packages\pip\index.py", line 423, in find_all_candidates for page in self._get_pages(url_locations, project_name): File "E:\tools\anaconda\py3\lib\site-packages\pip\index.py", line 568, in _get_pages page = self._get_page(location) File "E:\tools\anaconda\py3\lib\site-packages\pip\index.py", line 683, in _get_page return HTMLPage.get_page(link, session=self.session) File "E:\tools\anaconda\py3\lib\site-packages\pip\index.py", line 811, in get_page inst = cls(resp.content, resp.url, resp.headers) File "E:\tools\anaconda\py3\lib\site-packages\pip\index.py", line 731, in __init__ namespaceHTMLElements=False, TypeError: parse() got an unexpected keyword argument 'transport_encoding'
解決方案:
1.conda install -c anaconda html5lib
如下場(chǎng)景
F:\360Downloads>conda install -c anaconda html5lib Fetching package metadata ............... Solving package specifications: . Package plan for installation in environment E:\tools\anaconda\py3: The following packages will be UPDATED: anaconda: 5.0.0-py36hea9b2fc_0 --> custom-py36h463777c_0 anaconda bzip2: 1.0.6-vc14hdec8e7a_1 --> 1.0.6-vc14_3 anaconda [vc14] conda: 4.3.27-py36hcbae3bd_0 --> 4.4.8-py36_0 anaconda html5lib: 0.999999999-py36ha09b1f3_0 --> 1.0.1-py36h047fa9f_0 anaconda libpng: 1.6.32-vc14hce43e6c_2 --> 1.6.32-vc14h6163883_3 anaconda [vc14] openssl: 1.0.2l-vc14hcac20b0_2 --> 1.0.2l-vc14hf4c37d5_5 anaconda [vc14] pycosat: 0.6.2-py36hf17546d_1 --> 0.6.3-py36h513d8a4_0 anaconda The following packages will be SUPERSEDED by a higher-priority channel: conda-env: 2.6.0-h46134e3_1 --> 2.6.0-h46134e3_1 anaconda curl: 7.55.1-vc14hdaba4a4_3 --> 7.55.1-vc14hdaba4a4_3 anaconda [vc14] freetype: 2.8-vc14h27c9bdf_0 --> 2.8-vc14h27c9bdf_0 anaconda [vc14] hdf5: 1.10.1-vc14hb361328_0 --> 1.10.1-vc14hb361328_0 anaconda [vc14] icu: 58.2-vc14hc45fdbb_0 --> 58.2-vc14hc45fdbb_0 anaconda [vc14] jpeg: 9b-vc14h5d7706e_1 --> 9b-vc14h5d7706e_1 anaconda [vc14] libiconv: 1.15-vc14h39686d3_5 --> 1.15-vc14h39686d3_5 anaconda [vc14] libssh3: 1.8.0-vc14hcf584a9_2 --> 1.8.0-vc14hcf584a9_2 anaconda [vc14] libtiff: 4.0.8-vc14h04e2a1e_10 --> 4.0.8-vc14h04e2a1e_10 anaconda [vc14] libxml2: 2.9.4-vc14h8fd0f11_5 --> 2.9.4-vc14h8fd0f11_5 anaconda [vc14] libxslt: 1.1.29-vc14hf85b8d4_5 --> 1.1.29-vc14hf85b8d4_5 anaconda [vc14] qt: 5.6.2-vc14h7f8c307_12 --> 5.6.2-vc14h7f8c307_12 anaconda [vc14] sqlite: 3.20.1-vc14h7ce8c62_1 --> 3.20.1-vc14h7ce8c62_1 anaconda [vc14] tk: 8.6.7-vc14hb68737d_1 --> 8.6.7-vc14hb68737d_1 anaconda [vc14] yaml: 0.1.7-vc14hb31d195_1 --> 0.1.7-vc14hb31d195_1 anaconda [vc14] zlib: 1.2.11-vc14h2cdd9ab_1 --> 1.2.11-vc14h2cdd9ab_1 anaconda [vc14] Proceed ([y]/n)? y conda-env-2.6. 100% |###############################| Time: 0:00:00 538.73 kB/s bzip2-1.0.6-vc 100% |###############################| Time: 0:00:02 55.75 kB/s icu-58.2-vc14h 7% |## | Time: 0:00:07 233.63 kB/s
2.更新:conda install pip
以上是“怎么解決安裝完tensorflow后pip無(wú)法使用的問(wèn)題”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊頻道!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線(xiàn),公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿(mǎn)足用戶(hù)豐富、多元化的應(yīng)用場(chǎng)景需求。
當(dāng)前名稱(chēng):怎么解決安裝完tensorflow后pip無(wú)法使用的問(wèn)題-創(chuàng)新互聯(lián)
文章URL:http://www.chinadenli.net/article36/iejsg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、關(guān)鍵詞優(yōu)化、面包屑導(dǎo)航、建站公司、手機(jī)網(wǎng)站建設(shè)、用戶(hù)體驗(yàn)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容