我正在使用最新版本的 Anaconda3.我刚刚安装了它,我正在尝试下载一些软件包.我正在使用 Anaconda 提示.在尝试使用 pip 做任何事情(包括升级现有软件包)时,我得到以下回溯.
I am using the latest version of Anaconda3. I just installed it and I am trying to download some packages. I am using the Anaconda Prompt. While trying to use pip to do anything (including upgrading existing packages) I get the following traceback.
Exception:
Traceback (most recent call last):
File "C:UserscsprockAnaconda3libsite-packagespipasecommand.py", line 215, in main
status = self.run(options, args)
File "C:UserscsprockAnaconda3libsite-packagespipcommandsinstall.py", line 335, in run
wb.build(autobuilding=True)
File "C:UserscsprockAnaconda3libsite-packagespipwheel.py", line 749, in build
self.requirement_set.prepare_files(self.finder)
File "C:UserscsprockAnaconda3libsite-packagespip
eq
eq_set.py", line 380, in prepare_files
ignore_dependencies=self.ignore_dependencies))
File "C:UserscsprockAnaconda3libsite-packagespip
eq
eq_set.py", line 487, in _prepare_file
req_to_install, finder)
File "C:UserscsprockAnaconda3libsite-packagespip
eq
eq_set.py", line 428, in _check_skip_installed
req_to_install, upgrade_allowed)
File "C:UserscsprockAnaconda3libsite-packagespipindex.py", line 465, in find_requirement
all_candidates = self.find_all_candidates(req.name)
File "C:UserscsprockAnaconda3libsite-packagespipindex.py", line 423, in find_all_candidates
for page in self._get_pages(url_locations, project_name):
File "C:UserscsprockAnaconda3libsite-packagespipindex.py", line 568, in _get_pages
page = self._get_page(location)
File "C:UserscsprockAnaconda3libsite-packagespipindex.py", line 683, in _get_page
return HTMLPage.get_page(link, session=self.session)
File "C:UserscsprockAnaconda3libsite-packagespipindex.py", line 811, in get_page
inst = cls(resp.content, resp.url, resp.headers)
File "C:UserscsprockAnaconda3libsite-packagespipindex.py", line 731, in __init__
namespaceHTMLElements=False,
TypeError: parse() got an unexpected keyword argument 'transport_encoding'
有什么想法吗?(这个问题只有在我安装了 tensorflow 之后才开始)谢谢.
Any ideas? (this problem only started after I installed tensorflow) Thanks.
我遇到了同样的问题,对我有用的是用 conda 更新 pip:
I had the same problem and what worked for me was updating pip with conda:
conda install pip
它将我的点从 9.0.1-py36hadba87b_3 更改为 9.0.1-py36h226ae91_4 并解决了问题.
It changed my pip from 9.0.1-py36hadba87b_3 to 9.0.1-py36h226ae91_4 and solved issue.
这篇关于pip throws TypeError: parse() got an unexpected keyword argument 'transport_encoding' 在尝试安装新软件包时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
使用 python 解析非常大的 xml 文件时出现问题Troubles while parsing with python very large xml file(使用 python 解析非常大的 xml 文件时出现问题)
使用 Python 2 在 XML 中按属性查找所有节点Find all nodes by attribute in XML using Python 2(使用 Python 2 在 XML 中按属性查找所有节点)
Python - 如何解析 xml 响应并将元素值存储在变量中Python - How to parse xml response and store a elements value in a variable?(Python - 如何解析 xml 响应并将元素值存储在变量中?)
如何在 Python 中获取 XML 标记值How to get XML tag value in Python(如何在 Python 中获取 XML 标记值)
如何使用 ElementTree 正确解析 utf-8 xml?How to correctly parse utf-8 xml with ElementTree?(如何使用 ElementTree 正确解析 utf-8 xml?)
将 XML 从 URL 解析为 python 对象Parse XML from URL into python object(将 XML 从 URL 解析为 python 对象)