Nameerror name requests is not defined

In this article, we will show you how to fix the Python nameerror name requests is not defined error message.

If you’re new to this error message technically, you don’t any idea how to resolve it.

Luckily, this article got you back because we’ll discuss what is nameerror: name requests is not defined error means, why it occurs, and how to fix this error.

So, just keep reading!

What is “nameerror: name requests is not defined”?

The Python nameerror name requests is not defined error message occurs when you’re trying to use the “request” module but did not import the module first.

Or the request module is not installed in your environment.

For example:

response = requests.get('https://www.google.com')
print(response.status_code)

If you try to run this code, as a results will throw an error message.

NameError: name 'requests' is not defined

The error occurs because you’re trying to use the requests module without importing it first.

Why does the “nameerror name requests is not defined”?

This error can be caused by several factors:

❌ Typically because the requests module has not been imported at the beginning of the Python script.

❌ If you forget to import the Requests library.

❌ If there’s a typo in your import statement.

How to fix “nameerror: name requests is not defined”?

To fix the nameerror: name ‘requests’ is not defined, you need to install the module and then import the requests module before using it.

Here are some solutions to fix the error:

1. Install the “requests” module

One of the reasons why you are facing this error is that you did not install the request module.

You can install the requests module using pip by running one of the following commands in your terminal.

For Python 2:

pip install requests

For Python 3:

✅ pip3 install requests
or
✅ python3 -m pip install requests

For Anaconda:

✅ conda install -c anaconda requests

For Ubuntu/Debian:

✅ sudo apt-get install python3-requests

For CentOS:

✅  sudo yum install python-requests

If you get permissions error:

✅ sudo pip3 install requests

If you don’t have pip in your PATH environment variable:

✅ python -m pip install requests

2. Import “requests” module

After you install the requests module successfully, the next step is to ensure that the module is imported into your code.

For example:

import requests

response = requests.get('https://www.google.com')
print(response.text)

Take note: you have to import the module at the top or at the beginning of you code to be able to use it throughout your code.

This is the whole process:

1.  Install the requests module
pip install requests

2.  Import the requests module
import requests

3. Use the requests module
response = requests.get('https://www.google.com')
print(response.text)

Conclusion

The Python nameerror name requests is not defined error message occurs when you’re trying to use the “request” module but did not import the module first.

Or the request module is not installed in your environment.

This article discusses what this error is all about and already provides solutions to help you fix this error.

You could also check out other “nameerror” articles that may help you in the future if you encounter them.

We are hoping that this article helps you fix the error. Thank you for reading itsourcecoders 😊