我已经从头开始构建python,它现在位于我的主目录中的一个文件夹中。我不确定如何为这个特定的版本/位置安装库。
Ubuntu附带2.7.6,我特别需要2.7.11。
谢谢!
答案 0 :(得分:0)
首先获取setuptools
apt-get update
apt-get install python-setuptools
apt-get install python-pip
如果您打算使用git和其他工具安装
apt-get install git
apt-get install python-dev
一旦pip和setuptools到位,你可以获得任何带有pip的模块 或easy_install
答案 1 :(得分:0)
从https://pypi.python.org/pypi/setuptools
获取setuptools运行
wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python
现在你有setuptools和ez_setup.py - 找到这个文件然后运行
python ez_setup.py
现在你有easy_install,所以你可以使用它或安装pip:
easy_install pip
此时你应该可以使用pip。