Python setup.py bdist_wheel 没有 运行 成功。安装 DRecPy
Python setup.py bdist_wheel did not run successfully. Installing DRecPy
我尝试安装描述安装的 DRecPy 库 here。
不幸的是,它不起作用。我已经尝试使用 pip 安装它,并使用 setup.py 直接安装。
两种方式都有错误。
第一个如下:
Building wheels for collected packages: pandas
Building wheel for pandas (setup.py) ... error
error: subprocess-exited-with-error
× python setup.py bdist_wheel did not run successfully.
│ exit code: 1
╰─> [1062 lines of output]
running bdist_wheel
running build
running build_py
creating build
第二个是:
Traceback (most recent call last):
File "projectpath\DRecPy\setup.py", line 15, in <module>
long_description = fh.read()
File "path\Python310\lib\encodings\cp1250.py", line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x88 in position 5916: character maps to <undefined>
自述文件中似乎有一个字符无法使用设置的编码读取。由于您已经有了源代码,因此请替换此处提到的行:
File "projectpath\DRecPy\setup.py", line 15, in <module>
long_description = fh.read()
和
long_description = ""
在 setup.py
文件中。然后做
python setup.py install
请注意,这表明此软件包未使用 python 3.10 进行测试,因此您可能会 运行 在这里遇到其他问题。
同时考虑通过 posting it on github
将此错误报告给包的作者
我尝试安装描述安装的 DRecPy 库 here。
不幸的是,它不起作用。我已经尝试使用 pip 安装它,并使用 setup.py 直接安装。 两种方式都有错误。
第一个如下:
Building wheels for collected packages: pandas
Building wheel for pandas (setup.py) ... error
error: subprocess-exited-with-error
× python setup.py bdist_wheel did not run successfully.
│ exit code: 1
╰─> [1062 lines of output]
running bdist_wheel
running build
running build_py
creating build
第二个是:
Traceback (most recent call last):
File "projectpath\DRecPy\setup.py", line 15, in <module>
long_description = fh.read()
File "path\Python310\lib\encodings\cp1250.py", line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x88 in position 5916: character maps to <undefined>
自述文件中似乎有一个字符无法使用设置的编码读取。由于您已经有了源代码,因此请替换此处提到的行:
File "projectpath\DRecPy\setup.py", line 15, in <module>
long_description = fh.read()
和
long_description = ""
在 setup.py
文件中。然后做
python setup.py install
请注意,这表明此软件包未使用 python 3.10 进行测试,因此您可能会 运行 在这里遇到其他问题。
同时考虑通过 posting it on github
将此错误报告给包的作者