我试图为python安装熊猫,但我一直得到很长的错误信息。所以我尝试了以下操作:
- 卸载并重新安装python 3.10.0
- 通过导航到目录,通过命令提示符安装pandasC:UsersusernameAppDataLocalProgramsPythonPython310Scripts并运行pip install pandas
- 我也试过使用pip3 install pandas
- 我尝试安装以前版本的pandas,但仍然得到相同的错误
错误如下:
Microsoft Windows [Version 10.0.19042.1288]
(c) Microsoft Corporation. All rights reserved.
C:Usersmotaz>cd .C:UsersmotazAppDataLocalProgramsPythonPython310Scripts
The filename, directory name, or volume label syntax is incorrect.
C:Usersmotaz>cd C:UsersmotazAppDataLocalProgramsPythonPython310Scripts
C:UsersmotazAppDataLocalProgramsPythonPython310Scripts>pip install pandas
Collecting pandas
Using cached pandas-1.3.3.tar.gz (4.7 MB)
Installing build dependencies ... error
ERROR: Command errored out with exit status 1:
command: 'C:UsersmotazAppDataLocalProgramsPythonPython310python.exe' 'C:UsersmotazAppDataLocalTemppip-standalone-pip-_jyoyc51__env_pip__.zippip' install --ignore-installed --no-user --prefix 'C:UsersmotazAppDataLocalTemppip-build-env-qf94j_f0overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'setuptools>=51.0.0' wheel 'Cython>=0.29.21,<3' 'numpy==1.17.3; python_version=='"'"'3.7'"'"' and (platform_machine!='"'"'arm64'"'"' or platform_system!='"'"'Darwin'"'"') and platform_machine!='"'"'aarch64'"'"'' 'numpy==1.18.3; python_version=='"'"'3.8'"'"' and (platform_machine!='"'"'arm64'"'"' or platform_system!='"'"'Darwin'"'"') and platform_machine!='"'"'aarch64'"'"'' 'numpy==1.19.3; python_version>='"'"'3.9'"'"' and (platform_machine!='"'"'arm64'"'"' or platform_system!='"'"'Darwin'"'"') and platform_machine!='"'"'aarch64'"'"'' 'numpy==1.19.2; python_version=='"'"'3.7'"'"' and platform_machine=='"'"'aarch64'"'"'' 'numpy==1.19.2; python_version=='"'"'3.8'"'"' and platform_machine=='"'"'aarch64'"'"'' 'numpy>=1.20.0; python_version=='"'"'3.8'"'"' and platform_machine=='"'"'arm64'"'"' and platform_system=='"'"'Darwin'"'"'' 'numpy>=1.20.0; python_version=='"'"'3.9'"'"' and platform_machine=='"'"'arm64'"'"' and platform_system=='"'"'Darwin'"'"''
cwd: None
Complete output (234 lines):
实际上,Python 3.10在几天前就为pandas
启用了。然而,最后一个版本(1.3.3)是在9月12日发布的。
你必须等待新的Pandas版本来使用Python 3.10安装它。在此之前,您可以继续使用较低版本的Python(就像一些用户建议的那样)。
我遇到了与您相同的问题,我安装了旧版本的python(即python 3.7.7)。问题解决了。据我所知,熊猫和numpy包还没有"准备好"。对于3.10 python。所以请检查旧版本
您必须下载3.9.7版本,这就可以安装pandas了。我已经卸载了3.10版本(我使用程序revo卸载程序)
我必须先安装3.9.7
,然后再安装pandas。
我必须卸载3.10
版本(我使用程序revo卸载程序)来做到这一点。
然后,15天前(2021年10月13日),他们启用了Python 3.10的pandas安装。
现在您可以简单地从cmd.exe
/prompt
安装它。