python – Pip install –target =. Alfred-Workflow给出了一个错误

前端之家收集整理的这篇文章主要介绍了python – Pip install –target =. Alfred-Workflow给出了一个错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图通过these instructions在macOS上安装python库.

但是每次运行此命令时都会出错:pip install –target =.阿尔弗雷德 – 工作流程

我总是得到这个错误来运行它:

pip install --target=. Alfred-Workflow       
Collecting Alfred-Workflow
Installing collected packages: Alfred-Workflow
Exception:
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/site-packages/pip/basecommand.py",line 215,in main
    status = self.run(options,args)
  File "/usr/local/lib/python2.7/site-packages/pip/commands/install.py",line 342,in run
    prefix=options.prefix_path,File "/usr/local/lib/python2.7/site-packages/pip/req/req_set.py",line 784,in install
    **kwargs
  File "/usr/local/lib/python2.7/site-packages/pip/req/req_install.py",line 851,in install
    self.move_wheel_files(self.source_dir,root=root,prefix=prefix)
  File "/usr/local/lib/python2.7/site-packages/pip/req/req_install.py",line 1064,in move_wheel_files
    isolated=self.isolated,File "/usr/local/lib/python2.7/site-packages/pip/wheel.py",line 247,in move_wheel_files
    prefix=prefix,File "/usr/local/lib/python2.7/site-packages/pip/locations.py",line 153,in distutils_scheme
    i.finalize_options()
  File "/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/install.py",line 264,in finalize_options
    "must supply either home or prefix/exec-prefix -- not both"
DistutilsOptionError: must supply either home or prefix/exec-prefix -- not both

我试着谷歌搜索搜索这个,但仍然无法弄明白.感谢您的任何帮助.

最佳答案
This问题答案(我在谷歌搜索你的错误信息的最后一行时发现它).

首先,我也得到了与您相同的错误消息,但在执行此操作后:

$echo "[install]
prefix=" > ~/.pydistutils.cfg

有用:

$pip install --target=. Alfred-Workflow
Collecting Alfred-Workflow
Installing collected packages: Alfred-Workflow
Successfully installed Alfred-Workflow-1.24

重要提示:它会破坏正常的pip install命令,因此之后需要rm~ / .pydistutils.cfg.

原文链接:https://www.f2er.com/python/438688.html

猜你在找的Python相关文章