无法下载dateutil,环境错误

时间:2019-07-29 18:37:01

标签: python python-dateutil

尝试下载dateutil以运行python脚本。

我尝试通过pip和pip3安装它,但它似乎在调用错误的python环境。

使用过:pip install python-dateutil==1.4,并得到了以下内容:

ERROR: Could not install packages due to an EnvironmentError: [('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/parser.pyc', '/private/var/folders/ff/f4w7vg7x3q9fm911gypt4h8r0000gn/T/pip-uninstall-SLYbJ2/parser.pyc', "[Errno 1] Operation not permitted: '/private/var/folders/ff/f4w7vg7x3q9fm911gypt4h8r0000gn/T/pip-uninstall-SLYbJ2/parser.pyc'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/relativedelta.py', '/private/var/folders/ff/f4w7vg7x3q9fm911gypt4h8r0000gn/T/pip-uninstall-SLYbJ2/relativedelta.py', "[Errno 1] Operation not permitted: '/private/var/folders/ff/

然后运行pip3 install python-dateutil==1.4却没有这样的模块或目录

然后跑了pip install -U pip

仍然失败

1 个答案:

答案 0 :(得分:0)

在命令行中,运行pip --version来验证点的版本和点的路径。然后,运行where python确定python的路径。

您应该看到路径相似,以确认python环境正确。然后运行pip install

但是,我认为这是一个权限问题。您可能想以管理员身份运行命令(例如sudo pip install)。

如果您无权访问admin,请尝试以下仅在您的用户帐户上安装的命令:

pip3 install --user package-name
pip install --user package-name