当您有多个版本的python时,如何在不使用pip的情况下安装python模块

时间:2018-08-02 18:27:26

标签: python-2.7

我当前的系统具有旧版本的python

$ python --version
Python 2.6.9

但是,我需要使用python2.7运行脚本。 所以我在2.6.9旁边安装了python 2.7。现在,我正在尝试为Python2.7安装模块。

这是我到目前为止尝试过的:

首先,我尝试安装pip,但由于版本冲突而无法安装

sudo zypper install python-pip 
Loading repository data...
Reading installed packages...
Resolving package dependencies...

Problem: nothing provides python(abi) = 2.7 needed by python-pip-7.1.2-2.4.noarch
 Solution 1: do not install python-pip-7.1.2-2.4.noarch
 Solution 2: break python-pip-7.1.2-2.4.noarch by ignoring some of its dependencies

Choose from above solutions by number or cancel [1/2/c] (c): c

所以我下载了源文件,将它们解压缩,然后使用python2.7运行setup.py

$ cd pycurl-7.43.0.2/
python2.7 setup.py build
python2.7 setup.py install

现在,当我运行脚本时,我仍然收到错误消息

ImportError: No module named pycurl

有人可以告诉我我想念的东西吗

0 个答案:

没有答案