Python - 安装后的pip可执行文件在哪里?

时间:2016-09-16 17:10:49

标签: python install pip

由于我在服务器上并且没有管理员权限,我需要在本地安装我自己的python版本和pip。安装了python之后,我使用了official site上的代码python get-pip.py --user。我得到以下返回,似乎pip已成功安装。但我不知道pip可执行文件在哪里,所以我无法将其添加到系统环境中。那它安装在哪里?

Collecting pip
  Using cached pip-8.1.2-py2.py3-none-any.whl
Collecting setuptools
  Using cached setuptools-27.2.0-py2.py3-none-any.whl
Collecting wheel
  Using cached wheel-0.29.0-py2.py3-none-any.whl
Installing collected packages: pip, setuptools, wheel
Successfully installed pip setuptools wheel

1 个答案:

答案 0 :(得分:2)

在Unix上,pip install --user ...将脚本放入~/.local/bin

pip应该在~/.local

附近