ModuleNotFoundError: No module named ‘requests’

In Python, ModuleNotFoundError: No module named ‘requests’ error occurs if we try to import the ‘requests‘ module without installing the package or if you have not installed it in the correct environment.

In this tutorial, let’s look at installing the requests module correctly in different operating systems and solve ModuleNotFoundError: No module named ‘requests’ error.  

What is ModuleNotFoundError: No module named ‘requests’?

There are various reasons why we get the ModuleNotFoundError: No module named ‘requests’ error

  • Trying to use the module without installing the requests package.
  • If the IDE is set to the incorrect version of the Python/Python interpreter.
  • You are using the virtual environment and the requests module is not installed inside a virtual environment
  • Installing the requests package in a different version of Python than the one which is used currently.
  • Declaring a variable name as the module name(requests)

If you are getting an error installing pip, checkout pip: command not found to resolve the issue.

How to fix ModuleNotFoundError: No module named ‘requests’?

requests is not a built-in module (it doesn’t come with the default python installation) in Python; you need to install it explicitly using the pip installer and then use it.  

Requests is an elegant and simple HTTP library for Python, built for human beings.

Requests allow you to send HTTP/1.1 requests extremely easily. There’s no need to manually add query strings to your URLs, or to form-encode your POST data. Keep-alive and HTTP connection pooling are 100% automatic, thanks to urllib3.

We can fix the error by installing the ‘requests‘ module by running the pip install requests command in your terminal/shell.

We can verify if the package is installed correctly by running the following command in the terminal/shell.

This will provide the details of the package installed, including the version number, license, and the path it is installed. If the module is not installed, you will get a warning message in the terminal stating WARNING: Package(s) not found: requests.

pip show requests

Output

Name: requests
Version: 2.28.1
Summary: Python HTTP for Humans.
Home-page: https://requests.readthedocs.io
Author: Kenneth Reitz
Author-email: me@kennethreitz.org
License: Apache 2.0
Location: c:\personal\ijs\python_samples\venv\lib\site-packages
Requires: charset-normalizer, idna, urllib3, certifi
Required-by: Nakedx

Solution 1 – Installing and using the requests module in a proper way

Based on the Python version and the operating system you are running, run the relevant command to install the requests module.

# If you are using Python 2 (Windows)
pip install requests

# if you are using Python 3 (Windows)
pip3 install requests

# If the pip is not set as environment varibale PATH
python -m pip install requests

# If you are using Python 2 (Linux)
sudo pip install requests

# if you are using Python 3 (Linux)
sudo pip3 install requests

# In case if you have to easy_install
sudo easy_install -U requests

# On Centos
yum install python-requests

# On Ubuntu
sudo apt-get install python3-requests

# If you are installing it in Anaconda 
conda install -c anaconda requests

Once you have installed the requests module, we can now import it inside our code and use it as shown below.

import requests


def get_data():
    res = requests.get("https://jsonplaceholder.typicode.com/posts/1")
    print(res.json())


get_data()

Output

{'userId': 1, 'id': 1, 'title': 'sunt aut facere repellat provident occaecati excepturi optio reprehenderit', 'body': 'quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas 
totam\nnostrum rerum est autem sunt rem eveniet architecto'}

Solution 2 – Verify if the IDE is set to use the correct Python version

If you are still getting the same error even after installing the package, you can verify if the IDE you are using is configured with the correct version of the Python interpreter.

For Eg:- In the case of Visual Studio Code, we can set the Python version by pressing CTRL + Shift + Por ( + Shift + P on Mac) to open the command palette.

Once the command palette opens, select the Python interpreter and select the correct version of Python and also the virtual environment(if configured).

Solution 3 – Installing requests inside the virtual environment

Many different IDEs like Jupyter Notebook, Spyder, Anaconda, or PyCharm often install their own virtual environment of Python to keep things clean and separated from your global Python.

If you are using VS Code, then you can also create a virtual environment, as shown below.

In the case of virtual environments, you need to ensure that the requests module needs to be installed inside the virtual environment and not globally.

Step 1: Create a Virtual Environment. If you have already created a virtual environment, then proceed to step 2.

Step 2: Activate the Virtual Environment

Step 3: Install the required module using the pip install command

# Create a virtual Environment
py -3 -m venv venv

# Activate the virtual environment (windows command)
venv\Scripts\activate.bat

# Activate the virtual environment (windows powershell)
venv\Scripts\Activate.ps1

# Activate the virtual environment (Linux)
source venv/bin/activate

# Install requests inside the virtual environment
pip install requests

Solution 4 – Ensure that a module name is not declared name a variable name.

Last but not least, you may need to cross-check and ensure that you haven’t declared a variable with the same name as the module name.

You should check if you haven’t named any files as requests.py as it may shadow the original requests module.

If the issue is still not solved, you can try removing the package and installing it once again, restart the IDE, and check the paths to ensure that packages are installed in the correct environment path and Python version.

Conclusion

The ModuleNotFoundError: No module named ‘requests’ error occurs when we try to import the ‘requests‘ module without installing the package or if you have not installed it in the correct environment.

We can resolve the issue by installing the requests module by running the pip install requests command. Also, ensure that the module is installed in the proper environment in case you use any virtual environments, and the Python version is appropriately set in the IDE that you are running the code.