我有 Ubuntu 12.04,
其中安装了Python 2.7 和 3.2这一页我安装了请求模块。
$ sudo pip install requests
但是,它只适用于 Python 2,不适用于 Python 3:
$ python
Python 3.2.3 (default, Apr 10 2013, 06:11:55)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import requests
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named requests
>>>
我应该如何安装请求模块才能使其适用于我的两个 Python 版本?
答案1
OP 的回答:
我通过以下各种答案找到了答案 这里答案是我必须先安装 pip-3.2。但我不确定所有步骤是否必要:
$ sudo apt-get install python3-pip $ sudo apt-get install python3-setuptools $ sudo python3 -m easy_install pip ... Installing pip script to /usr/local/bin Installing pip-3.2 script to /usr/local/bin .. Now I get pip-3.2: $ sudo pip-3.2 install requests