我尝试导入请求:

import requests

但我得到一个错误:

ImportError:没有模块命名请求


当前回答

请求不是内置模块(不随默认python安装一起提供),因此您必须安装它:

OSX/Linux系统

Python 2:sudo pip安装请求

Python 3:sudo pip3安装请求

如果您安装了pip(pip是python的包安装程序,默认情况下应随python安装一起提供)。如果pip已安装,但不在您的路径中,则可以使用python-m pip安装请求(或python3的python3-m pip请求)

或者,如果安装了easy_install,也可以使用sudo easy_install-U请求。

Linux系统

或者,您可以使用系统包管理器:

对于centos:sudo-yum安装python请求

对于Debian/Uubuntu Python2:sudo apt-get安装python请求

对于Debian/Uubuntu Python3:sudo apt-get安装Python3请求

窗户

如果安装了pip并将pip.exe添加到路径环境变量中,请使用pip安装请求(或python3的pip3安装请求)。如果pip已安装,但不在您的路径中,则可以使用python-m pip安装请求(或python3的python3-m pip请求)

或者,在cmd提示符下,使用>Path\easy_install.exe请求,其中Path是您的Python*\Scripts文件夹(如果已安装)。(例如:C:\Python32\Scripts)

如果您手动想要将库添加到windows计算机,可以下载压缩库,解压缩它,然后将其放入python路径的Lib\site-packages文件夹中。(例如:C:\Python27\Lib\site packages)

来源(通用)

对于任何丢失的库,源通常位于https://pypi.python.org/pypi/.您可以在此处下载请求:https://pypi.python.org/pypi/requests

在macosx和windows上,下载源zip后,解压缩它,然后从terminal/cmd中从未压缩的目录运行python setup.py install。

(来源)

其他回答

您必须确保请求模块未安装在较新版本的python中。

使用python 3.7时,运行python文件,如下所示:

python3 myfile.py

或使用以下命令进入python交互模式:

python3

是的,这对我有用。像这样运行文件:python3 file.py

遵循本教程:

$ pipenv install requests
Installing requests...
Adding requests to Pipfile's [packages]...
 Installation Succeeded 
Pipfile.lock not found, creating...
Locking [dev-packages] dependencies...
Locking [packages] dependencies...
Building requirements...
Resolving dependencies...
 Success! 
Updated Pipfile.lock (a290a1)!
Installing dependencies from Pipfile.lock (a290a1)...
   ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 0/0 — 00:00:00
To activate this project's virtualenv, run pipenv shell.
Alternatively, run a command inside the virtualenv with pipenv run.
$ pipenv shell
Launching subshell in virtual environment...
 . /home/[user]/.local/share/virtualenvs/[id]/bin/activate
$ python3
Python 3.10.5 (main, Jul  5 2022, 00:20:23) [GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import requests
>>> response = requests.get('https://httpbin.org/ip')
>>> print('Your IP is {0}'.format(response.json()['origin']))
Your IP is xx.xxx.xx.xxx

唯一对我有用的是:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
pip install requests

如果您使用的是Ubuntu,则需要安装请求

运行以下命令:

pip install requests

如果您面临权限拒绝错误,请在命令之前使用sudo:

sudo pip install requests

尝试sudo apt-get安装python请求。

这对我有用。