我想安装pip。它应该支持Python 3,但它需要setuptools,这只适用于Python 2。
如何在python3中安装pip ?
我想安装pip。它应该支持Python 3,但它需要setuptools,这只适用于Python 2。
如何在python3中安装pip ?
当前回答
这是我复制粘贴的一行代码:
curl https://bootstrap.pypa.io/get-pip.py | python3
可选:
curl -L get-pip.io | python3
使用get-pip.py安装:
要安装pip,请按以下链接安全地下载get-pip.py: get-pip.py。另外,使用 旋度: Curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py 然后在下载的文件夹中执行以下命令 get-pip.py: python get-pip.py 警告:如果您使用的是托管的Python安装,请谨慎 通过您的操作系统或其他包管理器。get-pip.py确实 不与这些工具协调,并可能使您的系统处于 不一致的状态。
其他回答
假设你在一个高度受限的计算机环境中(比如我自己),没有root权限或安装包的能力……
在这篇文章之前,我从来没有设置过Python+virtualenv的新/独立/原始/非根实例。为了做到这一点,我在谷歌上搜索了很多。
Decide if you are using python (python2) or python3 and set your PATH correctly. (I am strictly a python3 user.) All commands below can substitute python3 for python if you are python2 user. wget https://pypi.python.org/packages/source/v/virtualenv/virtualenv-x.y.z.tar.gz tar -xzvf virtualenv-x.y.z.tar.gz python3 virtualenv-x.y.z/virtualenv.py --python $(which python3) /path/to/new/virtualenv source /path/to/new/virtualenv/bin/activate Assumes you are using a Bourne-compatible shell, e.g., bash Brilliantly, this virtualenv package includes a standalone version of pip and setuptools that are auto-magically installed into each new virtualenv. This solves the chicken and egg problem. You may want to create an alias (or update your ~/.bashrc, etc.) for this final command to activate the python virtualenv during each login. It can be a pain to remember all these paths and commands. Check your version of python now: which python3 should give: /path/to/new/virtualenv/bin/python3 Check pip is also available in the virtualenv via which pip... should give: /path/to/new/virtualenv/bin/pip
然后……皮皮,皮皮,皮皮!
给python新手的最后一个提示:在开始时,您认为不需要virtualenv,但以后会很高兴拥有它。帮助开源/共享包的“假设”安装/升级场景。
裁判:https://virtualenv.pypa.io/en/latest/installation.html
下面是我在ubuntu 12.04中解决这个问题的方法:
sudo apt-get install build-essential libncursesw5-dev libssl-dev libgdbm-dev libc6-dev libsqlite3-dev tk-dev
然后从源代码安装python3:
wget https://www.python.org/ftp/python/3.4.0/Python-3.4.0.tar.xz
tar xvf Python-3.4.0.tar.xz
cd Python-3.4.0
./configure
make
make test
sudo make install
当您完成所有这些程序的安装后,pip3将自动安装。
如果你使用命令"python get-pip.py",你应该有Python3的'pip'函数。但是,Python2的'pip'可能仍然存在。在我的例子中,我卸载了'pip',这将它从Python2中删除。
之后,我再次运行“python get-pip.py”。(确保'get-pip.py'保存在与Python3相同的文件夹中。)最后一步是将带有'pip'命令的目录添加到$PATH。这为我解决了问题。
请按照以下步骤安装python 3和pip:
步骤1:从这里下载安装Python
步骤2:需要下载get-pip.py
步骤3:下载get-pip.py后,打开命令提示符并进入保存get-pip.py文件的目录。
第四步:在cmd下输入命令python get-pip.py。
步骤5:Pip installed successfully, Verify Pip installation by type command in cmd Pip——version
python3 -m ensurepip
我不确定这是什么时候引入的,但是当它还不存在的时候,我为它安装了pip3。