pypipython-requests95% confidence\u2191 986

Error "ImportError: No module named requests"

Full error message
I tried importing requests:

import requests

But I get an error:

ImportError: No module named requests

Requests is not a built-in module (it does not come with the default Python installation), so you will have to install it: Mac OS X and Linux Python 2: sudo pip install requests Python 3: sudo pip3 install requests if you have pip installed (pip is the package installer for Python and should come by default with your Python installation). If pip is installed, but not in your path, you can use python -m pip install requests (or python3 -m pip install requests for Python 3) Alternatively, you can also use sudo easy_install -U requests if you have easy_install installed. Linux Alternatively you can use your systems package manager: For CentOS: sudo yum install python-requests For Debian/Ubuntu Python 2: sudo apt-get --reinstall install python-requests For Debian/Ubuntu Python 3: sudo apt-get --reinstall install python3-requests --reinstall may fix this error, if package was already installed. Windows Use pip install requests (or pip3 install requests for Python 3) if you have pip installed and Pip.exe added to the Path environment variable. If pip is installed, but not in your path, you can use python -m pip install requests (or python3 -m pip install requests for Python 3) Alternatively, from a command prompt, use > Path\easy_install.exe requests, where Path is your Python*\Scripts folder, if it was installed. (For example: C:\Python32\Scripts) If you manually want to add a library to a Windows machine, you can download the compressed library, uncompress it, and then place it into the Lib\site-packages folder of your python path. (For example: C:\Python27\Lib\site-packages) From source (universal) For any missing library, the source is usually available at https://pypi.python.org/pypi/. You can download requests here: https://pypi.python.org/pypi/requests On Mac OS X and Windows, after downloading the source ZIP file, uncompress it and from the terminal/cmd, run python setup.py install from the uncompressed directory. (Source)

API access

Get this solution programmatically \u2014 free, no authentication.

curl https://depscope.dev/api/error/947d4220e8e85642daa9ead9e971c60803cc30a12800fea318bf3ed85e604636
hash \u00b7 947d4220e8e85642daa9ead9e971c60803cc30a12800fea318bf3ed85e604636
Error "ImportError: No module named requests" — DepScope fix | DepScope