在 Msys 上安装 Pip

Installing Pip on Msys

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

我环顾四周,发现 this 但它与 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           

如所列 here,以及:

pacman -S python3-pip

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

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

那么如何在 Msys 上获得 pip

谢谢。

要安装 pip,请安全下载 get-pip.py

然后运行以下内容:

python get-pip.py

更多详情请参考:https://pip.pypa.io/en/stable/installing/

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

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

已接受的答案安装了一个新的 Python 可执行文件 pip,但没有 GTK 支持。

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

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

(取自this issue

总结将 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