我试图使用pip install eel安装eel,但是我收到错误
C:\Users\USER>pip install eel
Collecting eel
Using cached Eel-0.7.0.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "c:\users\user\appdata\local\temp\pip-build-aa7ptb\eel\setup.py", line 14, in <module>
long_description=open('README.md', encoding='utf-8').readlines()[1],
TypeError: 'encoding' is an invalid keyword argument for this function
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in c:\users\user\appdata\local\temp\pip-build-aa7ptb\eel\
我尝试使用pip install --upgrade setuptools但仍然无法正常工作。
使用python 2.7
答案 0 :(得分:1)
Python 2.7中的open
函数具有不同的签名,特别是没有名为encoding
的关键字参数,您可以从错误消息中读取。
Eel似乎不支持Python 2.7(无论如何你都应该使用Python 3)。
Python 2.7中的 Python 3.6中的