在Centos 6.5上安装Python 3.4.2后没有pip二进制文件

时间:2014-10-26 17:53:23

标签: python pip python-3.4 centos6.5

成功安装Python后,我无法找到pip可执行文件。 /usr/local/lib/python3.4/site-packages/pip的内容是:

-rw-r--r--. 1 root root  9450 Oct 26 10:29 __init__.py
-rw-r--r--. 1 root root   116 Oct 26 10:29 __main__.py
-rw-r--r--. 1 root root  9507 Oct 26 10:29 cmdoptions.py
-rw-r--r--. 1 root root  8162 Oct 26 10:29 baseparser.py
-rw-r--r--. 1 root root  6578 Oct 26 10:29 basecommand.py
-rw-r--r--. 1 root root  2969 Oct 26 10:29 pep425tags.py
-rw-r--r--. 1 root root  9455 Oct 26 10:29 log.py
-rw-r--r--. 1 root root  6202 Oct 26 10:29 locations.py
-rw-r--r--. 1 root root 40403 Oct 26 10:29 index.py
-rw-r--r--. 1 root root  1086 Oct 26 10:29 exceptions.py
-rw-r--r--. 1 root root 22580 Oct 26 10:29 download.py
-rw-r--r--. 1 root root 24172 Oct 26 10:29 util.py
-rw-r--r--. 1 root root   116 Oct 26 10:29 status_codes.py
-rw-r--r--. 1 root root   431 Oct 26 10:29 runner.py
-rw-r--r--. 1 root root 83557 Oct 26 10:29 req.py
-rw-r--r--. 1 root root 20618 Oct 26 10:29 wheel.py
drwxr-xr-x. 3 root root  4096 Oct 26 10:29 vcs
drwxr-xr-x. 3 root root  4096 Oct 26 10:29 commands
drwxr-xr-x. 8 root root  4096 Oct 26 10:29 _vendor
drwxr-xr-x. 3 root root  4096 Oct 26 10:29 backwardcompat
drwxr-xr-x. 2 root root  4096 Oct 26 10:29 __pycache__

我该如何使用它?

1 个答案:

答案 0 :(得分:1)

来自https://docs.python.org/3.4/installing/index.html

  

pip是首选的安装程序。从Python 3.4开始,它   默认包含Python二进制安装程序。

在python 3.4之前,pip是一个独立的软件包'刚刚被称为' pip' 因为他们现在已经将它包含在python安装程序中,并且其他版本的pip可能先前已经安装在系统上,所以python 3.4附带的新pip被命名为pip3.4,以便能够轻松区分不同的pip版本。 / p>

另见https://docs.python.org/3/whatsnew/3.4.htmlhttp://bugs.python.org/issue20139