在 Msys 上安装 Pip

新手上路,请多包涵

我已经使用 Python 3.5.2 和 Msys 构建了一个简单的 PyGTK 应用程序,但我需要一些不在默认安装中的模块,虽然我可以使用 setup.py install 来获取它们,但我更愿意使用 pip

我环顾四周,发现 了这个,但它与 Python 2 相关,并且在尝试按照给出的说明进行操作时出错:

 $ python3 getpip.py

Collecting pip
  Downloading pip-9.0.1-py2.py3-none-any.whl (1.3MB)
Collecting setuptools
  Using cached setuptools-38.2.5-py2.py3-none-any.whl
Collecting wheel
  Using cached wheel-0.30.0-py2.py3-none-any.whl
Installing collected packages: pip, setuptools, wheel
Exception:
Traceback (most recent call last):
  File "C:\Users\Simon\AppData\Local\Temp\tmpoumuod3r\pip.zip\pip\basecommand.py", line 215, in main
    status = self.run(options, args)
  File "C:\Users\Simon\AppData\Local\Temp\tmpoumuod3r\pip.zip\pip\commands\install.py", line 342, in run
    prefix=options.prefix_path,
  File "C:\Users\Simon\AppData\Local\Temp\tmpoumuod3r\pip.zip\pip\req\req_set.py", line 784, in install
    **kwargs
  File "C:\Users\Simon\AppData\Local\Temp\tmpoumuod3r\pip.zip\pip\req\req_install.py", line 851, in install
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
  File "C:\Users\Simon\AppData\Local\Temp\tmpoumuod3r\pip.zip\pip\req\req_install.py", line 1064, in move_wheel_files
    isolated=self.isolated,
  File "C:\Users\Simon\AppData\Local\Temp\tmpoumuod3r\pip.zip\pip\wheel.py", line 462, in move_wheel_files
    generated.extend(maker.make(spec))
  File "C:\Users\Simon\AppData\Local\Temp\tmpoumuod3r\pip.zip\pip_vendor\distlib\scripts.py", line 372, in make
    self._make_script(entry, filenames, options=options)
  File "C:\Users\Simon\AppData\Local\Temp\tmpoumuod3r\pip.zip\pip_vendor\distlib\scripts.py", line 276, in _make_script
    self._write_script(scriptnames, shebang, script, filenames, ext)
  File "C:\Users\Simon\AppData\Local\Temp\tmpoumuod3r\pip.zip\pip_vendor\distlib\scripts.py", line 212, in _write_script
    launcher = self._get_launcher('t')
  File "C:\Users\Simon\AppData\Local\Temp\tmpoumuod3r\pip.zip\pip_vendor\distlib\scripts.py", line 351, in _get_launcher
    result = finder(distlib_package).find(name).bytes
AttributeError: 'NoneType' object has no attribute 'bytes'

我尝试了在 Linux 上安装 pip 的方式:

 pacman -S python2-pip
pacman -S python-pip

如此 所列,以及:

 pacman -S python3-pip

但每次我都收到 error: target not found: 错误。

令人惊讶的是,我找不到其他任何东西。

那么我如何在 Msys 上获得 pip 呢?

谢谢。

原文由 Xantium 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 2.3k
2 个回答

请注意,此时以下命令正在 msys2 上运行:

 $ pacman -S python3-pip
$ pip3 install --upgrade pip

原文由 user8128167 发布,翻译遵循 CC BY-SA 3.0 许可协议

接受的答案安装了一个新的 Python pip ,但没有 GTK 支持。

为了安装 pip 支持现有的 GTK Python 可执行文件,遇到该错误后,我们需要运行:

 python -m pip install -U --force-reinstall pip

(取自 这个问题

总结将 Pip 支持安装到 GTK-Python 可执行文件所需的步骤:

  1. curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
  2. python get-pip.py
  3. (忽略上一步的错误)
  4. python -m pip install -U --force-reinstall pip

原文由 Zvika 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题