Troubleshooting "ImportError: No module named requests"
When attempting to import the requests module into your Python code, you may encounter the error "ImportError: No module named requests." This issue arises because Requests is an external library that is not included in the default Python distribution.
Solving the Error
To resolve this error and utilize the Requests module, you must install it. The installation method varies depending on your operating system.
macOS/Linux:
-
Python 2: sudo pip install requests
-
Python 3: sudo pip3 install requests
If Pip is installed but not in your path:
- python -m pip install requests (or python3 -m pip install requests for Python 3)
- sudo easy_install -U requests (if easy_install is installed)
Linux (Alternative Using System Package Manager):
- CentOS: sudo yum install python-requests
- Debian/Ubuntu Python 2: sudo apt-get --reinstall install python-requests
- Debian/Ubuntu Python 3: sudo apt-get --reinstall install python3-requests
Windows:
- pip install requests (or pip3 install requests for Python 3)
- python -m pip install requests (or python3 -m pip install requests for Python 3) if Pip is not in your path
- Patheasy_install.exe requests (where Path is the Python*Scripts folder) if easy_install is installed
Manually Installing from Source:
- Download the Requests source code from https://pypi.python.org/pypi/requests
- Uncompress the downloaded ZIP file
- In the uncompressed directory, run python setup.py install
The above is the detailed content of Why Am I Getting \'ImportError: No module named requests\' and How Do I Fix It?. For more information, please follow other related articles on the PHP Chinese website!