Modulenotfounderror no module named requests ошибка

I have installed the pip3 as well as requests package in my pc.Even then on running the command import requests on my shell,i am getting the following error:

Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import requests
ModuleNotFoundError: No module named 'requests'

I have to manually copy all the packages to my working directory to tackle this exception.

asked Jul 4, 2017 at 20:55

Jaskunwar singh's user avatar

Jaskunwar singhJaskunwar singh

2052 gold badges5 silver badges10 bronze badges

13

Find were your python is installed and find Scripts directory. Open cmd, go to this folder and type pip install requests.

For me it was like below:

cd C:UsersmyLocalUserNameAppDataLocalProgramsPythonPython36Scripts
pip install requests

answered Oct 12, 2017 at 10:01

Hawlett's user avatar

In PyCharm you should:

  1. Go back to base configuration in «File» — «Settings» — «Python Interpreteter» (it is the path that ends with «…python.exe»)
  2. Click on the plus and install this module by typing name in search field.
  3. Choose this configuration and run it by pressing Ctrl+Alt+F10

Tonechas's user avatar

Tonechas

13.3k15 gold badges45 silver badges80 bronze badges

answered May 9, 2021 at 17:55

Серёга Британ's user avatar

For listing instaled modules for Python 3:

sudo pip3 list

For installing the request module for Python 3:

sudo pip3 install requests

answered Jul 19, 2021 at 12:27

simhumileco's user avatar

simhumilecosimhumileco

31.2k16 gold badges137 silver badges112 bronze badges

Make sure that requestes module should have version starts with 2

Not correct

pip3 list

Package Version


requestes 0.0.1

I installed this and installed using

 python -m pip install requests

Later :

PS C:pythonScripts> pip list

Package Version


certifi 2021.5.30

chardet 4.0.0

idna 2.10

pip 21.1.3

requests 2.25.1

urllib3 1.26.6

answered Jun 30, 2021 at 4:54

sterin jacob's user avatar

Activate Virtual Environment
.envScriptsactivate
Install the dependencies,

pip install request

answered Aug 8, 2021 at 5:32

Haris Patel's user avatar

Been tackling this issue for 2 hours now, this solution did it!

Find your Python installation location and, specifically, the Scripts directory. Open cmd, and run the following:

cd C:Users<myLocalUserName>AppDataLocalProgramsPythonPython36Scripts
pip install requests

nathan liang's user avatar

nathan liang

9502 gold badges11 silver badges22 bronze badges

answered Jul 10, 2022 at 17:15

Se7en Axis's user avatar

For me, I used the package manager within my IDE (Pycharm in this case) to see if ‘request’ was installed. Once I did that, then the error went away.
I also tried pip install, but I suspect I have multiple python on the system and pip didn’t install to the correct python. This is why others are suggesting to install from a specific python installation.

In Linux or Mac, you can run ‘which python’ for additional clues.

answered Jul 17, 2022 at 23:43

kendycrush's user avatar

when i run server i have below error:

ModuleNotFoundError: No module named 'requests'

but requests have been installed on my system, when i run sudo pip3 install requests command, output is :

Requirement already satisfied: requests in /home/sadegh-khan/.local/lib/python3.6/site-packages

the terminal pic of my error and command to install requests is:
ModuleNotFoundEr

asked Apr 14, 2018 at 15:43

Sadegh-khan's user avatar

6

You’re installing requests by running pip as sudo, which means it is installed globally. Yet your screenshot (and please don’t post screenshots anyway) shows you are inside a virtualenv, .venv.

Don’t use sudo; just install requests inside the venv.

answered Apr 14, 2018 at 15:50

Daniel Roseman's user avatar

Daniel RosemanDaniel Roseman

586k63 gold badges873 silver badges888 bronze badges

2

If you are using Python3 instead of running the server using python manage.py runserver go ahead and run python3 manage.py runserver

Instead of

python manage.py runserver

or

py  manage.py runserver

Run
python3 manage.py runserver

answered Sep 12, 2020 at 17:37

crispengari's user avatar

crispengaricrispengari

7,4735 gold badges42 silver badges51 bronze badges

ModuleNotFoundError: no module named 'requests' [Solved in Python Django]

Errors are an inevitable part of programming, and every programmer will encounter them at some point in their career.

Errors in programming can take various forms, including syntax errors, logic errors, and runtime errors, and they can have a significant impact on the functioning of a program.

Understanding the different types of errors in programming and learning how to identify and fix them is essential for writing robust and reliable code.

In this regard, various tools, such as debuggers, profilers, and automated testing frameworks can help you detect and fix errors more efficiently.

In this quick tutorial, we’ll look at a specific Python error – the «ModuleNotFoundError: no module named 'requests'» error – to see what causes it and how to fix it.

The ModuleNotFoundError: no module named 'requests' error occurs when you try to import the requests module in your Python code but the module is not installed or not available in the current environment.

This error is commonly encountered when using Python Django because the requests module is often used for making HTTP requests in Django applications.

How to Fix the ModuleNotFoundError: no module named 'requests' Error in Python

To solve this error, you can follow these steps:

First, check if the requests module is installed. Open a terminal or command prompt and enter the following command:

pip freeze | grep requests

This command will search for the requests module in your environment and print its version number if it is installed. If nothing is printed, it means that the module is not installed.

If the requests module is not installed, you can install it by running the following command in your terminal or command prompt:

pip install requests

This command will download and install the requests module and all its dependencies.

Then you’ll need to check if the requests module was imported correctly. Once the requests module is installed, you can import it in your Python code using the following statement:

import requests

Make sure that this statement is placed at the top of your Python file before any other statements that use the requests module.

Finally, if you are using the requests module in a Python Django application, you may need to restart your server after installing the module to ensure that the changes take effect.

Wrapping Up

By following these steps, you should be able to solve the ModuleNotFoundError: no module named 'requests' error and use the requests module in your Python Django application.

And that is it!

Feel free to connect with me on Twitter and on LinkedIn. You can also subscribe to my YouTube channel.

Happy Coding!



Learn to code for free. freeCodeCamp’s open source curriculum has helped more than 40,000 people get jobs as developers. Get started

A common error you may encounter when using Python is modulenotfounderror: no module named ‘requests’. This error occurs when Python cannot detect the Requests library in your current environment. Requests does not come with the default Python installation. This tutorial goes through the exact steps to troubleshoot this error for the Windows, Mac and Linux operating systems.

ModuleNotFoundError: no module named ‘requests’

What is ModuleNotFoundError?

The ModuleNotFoundError occurs when the module you want to use is not present in your Python environment. There are several causes of the modulenotfounderror:

The module’s name is incorrect, in which case you have to check the name of the module you tried to import. Let’s try to import the re module with a double e to see what happens:

import ree
---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
1 import ree

ModuleNotFoundError: No module named 'ree'

To solve this error, ensure the module name is correct. Let’s look at the revised code:

import re

print(re.__version__)
2.2.1

You may want to import a local module file, but the module is not in the same directory. Let’s look at an example package with a script and a local module to import. Let’s look at the following steps to perform from your terminal:

mkdir example_package

cd example_package

mkdir folder_1

cd folder_1

vi module.py

Note that we use Vim to create the module.py file in this example. You can use your preferred file editor, such as Emacs or Atom. In module.py, we will import the re module and define a simple function that prints the re version:

import re

def print_re_version():

    print(re.__version__)

Close the module.py, then complete the following commands from your terminal:

cd ../

vi script.py

Inside script.py, we will try to import the module we created.

import module

if __name__ == '__main__':

    mod.print_re_version()

Let’s run python script.py from the terminal to see what happens:

Traceback (most recent call last):
  File "script.py", line 1, in <module>
    import module
ModuleNotFoundError: No module named 'module'

To solve this error, we need to point to the correct path to module.py, which is inside folder_1. Let’s look at the revised code:

import folder_1.module as mod

if __name__ == '__main__':

    mod.print_re_version()

When we run python script.py, we will get the following result:

2.2.1

Lastly, you can encounter the modulenotfounderror when you import a module that is not installed in your Python environment. The simplest way to install requests is to use the package manager for Python called pip. The following instructions are for the major Python version 3.

What is requests?

Requests is an HTTP library for Python. Requests allows you to send HTTP/1.1 requests. Requests does not automatically come installed with Python.

How to install requests on Windows Operating System

You can install pip on Windows by downloading the installation package, opening the command line and launching the installer. You can install pip via the CMD prompt by running the following command.

python get-pip.py

You may need to run the command prompt as administrator. Check whether the installation has been successful by typing.

pip --version

To install requests with pip, run the following command from the command prompt.

pip3 install requests

How to install requests on Mac Operating System

Open a terminal by pressing command (⌘) + Space Bar to open the Spotlight search. Type in terminal and press enter. To get pip, first ensure you have installed Python3:

python3 --version
Python 3.8.8

Download pip by running the following curl command:

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

The curl command allows you to specify a direct download link. Using the -o option sets the name of the downloaded file.

Install pip by running:

python3 get-pip.py

From the terminal, use pip3 to install requests:

pip3 install requests

How to install requests on Linux Operating System

All major Linux distributions have Python installed by default. However, you will need to install pip. You can install pip from the terminal, but the installation instructions depend on the Linux distribution you are using. You will need root privileges to install pip. Open a terminal and use the commands relevant to your Linux distribution to install pip.

Installing pip for Ubuntu, Debian, and Linux Mint

sudo apt install python-pip3

Installing pip for CentOS 8 (and newer), Fedora, and Red Hat

sudo dnf install python-pip3

Installing pip for CentOS 6 and 7, and older versions of Red Hat

sudo yum install epel-release

sudo yum install python-pip3

Installing pip for Arch Linux and Manjaro

sudo pacman -S python-pip

Installing pip for OpenSUSE

sudo zypper python3-pip

Once you have installed pip, you can install requests using:

pip3 install requests

Check requests Version

Once you have successfully installed requests, you can use two methods to check the version of requests. First, you can use pip show from your terminal.

pip show requests
Name: requests
Version: 2.25.1
Summary: Python HTTP for Humans.
Home-page: https://requests.readthedocs.io
Author: Kenneth Reitz
Author-email: [email protected]
License: Apache 2.0
Location: /Users/Yusufu.Shehu/opt/anaconda3/lib/python3.8/site-packages
Requires: urllib3, chardet, idna, certifi
Required-by: tensorboard, Sphinx, requests-oauthlib, jupyterlab-server, conda, conda-repo-cli, conda-build, anaconda-project, anaconda-client

Second, within your python program, you can import requests and then reference the __version__ attribute:

import requests

print(requests.__version__)
2.25.1

Installing requests Using Anaconda

Anaconda is a distribution of Python and R for scientific computing and data science. You can install Anaconda by going to the installation instructions. Once you have installed Anaconda, you can install requests using the following command:

conda install -c anaconda requests

Summary

Congratulations on reading to the end of this tutorial. The modulenotfounderror occurs if you misspell the module name, incorrectly point to the module path or do not have the module installed in your Python environment. If you do not have the module installed in your Python environment, you can use pip to install the package. However, you must ensure you have pip installed on your system. You can also install Anaconda on your system and use the conda install command to install the requests library.

For further reading on ModuleNotFoundErrors, go to the article: How to Solve Python ModuleNotFoundError: No module named ‘ConfigParser’.

Go to the online courses page on Python to learn more about Python for data science and machine learning.

Have fun and happy researching!

One error that you might encounter when working with Python is:

ModuleNotFoundError: No module named 'requests'

This error occurs when Python can’t find the requests module in your current Python environment.

This tutorial shows examples that cause this error and how to fix it.

How to reproduce the error

Suppose you want to use the Requests library to send an HTTP/HTTPS request.

You import the requests module in your code as follows:

import requests

r = requests.get('https://example.com/api')

print(r.status_code)

But you get the following error when running the code:

Traceback (most recent call last):
  File "main.py", line 1, in <module>
    import requests
ModuleNotFoundError: No module named 'requests'

This error occurs because the requests module is not a built-in Python module, so you need to install it before using it.

How to fix this error

To resolve this error, you need to install the requests library using pip as shown below:

pip install requests

# For pip3:
pip3 install requests

Once the module is installed, you should be able to run the code that imports requests without receiving this error.

Install commands for other environments

The install command might differ depending on what environment you used to run the Python code.

Here’s a list of common install commands in popular Python environments to install the requests module:

# if you don't have pip in your PATH:
python -m pip install requests

python3 -m pip install requests

# Windows
py -m pip install requests

# Anaconda
conda install -c anaconda requests

# Jupyter Notebook
!pip install requests

Once the module is installed, you should be able to run the code without receiving this error.

Other common causes for this error

If you still see the error even after installing the module, it means that the requests module can’t be found in your Python environment.

There are several reasons why this error can happen:

  1. You may have multiple versions of Python installed on your system, and you are using a different version of Python than the one where Requests is installed.
  2. You might have Requests installed in a virtual environment, and you are not activating the virtual environment before running your code.
  3. Your IDE uses a different version of Python from the one that has Requests

Let’s see how to fix these errors in practice.

Handling multiple versions of Python

If you have multiple versions of Python installed on your system, you need to make sure that you are using the specific version where the Requests module is available.

You can test this by running the which -a python or which -a python3 command from the terminal:

$ which -a python3
/opt/homebrew/bin/python3
/usr/bin/python3

In the example above, there are two versions of Python installed on /opt/homebrew/bin/python3 and /usr/bin/python3.

Suppose you run the following steps in your project:

  1. Install Requests with pip using /usr/bin/ Python version
  2. Install Python using Homebrew, you have Python in /opt/homebrew/
  3. Then you run import requests in your code

The steps above will cause the error because Requests is installed in /usr/bin/, and your code is probably executed using Python from /opt/homebrew/ path.

To solve this error, you need to run pip install requests command again so that Requests is installed and accessible by the new Python version.

Next, you can also have Requests installed in a virtual environment.

Handling Python virtual environment

Python venv package allows you to create a virtual environment where you can install different versions of packages required by your project.

If you are installing requests inside a virtual environment, then the module won’t be accessible outside of that environment.

You can see if a virtual environment is activated or not by looking at your command prompt.

When a virtual environment is activated, the name of that environment will be shown inside parentheses as shown below:

In the picture above, the name of the virtual environment (base) appears when the Conda virtual environment is activated.

You need to turn off the virtual environment so that pip installs to your computer.

When your virtual environment is created by Conda, run the conda deactivate command. Otherwise, running the deactivate command should work.

Handle IDE using a different Python version

Finally, the IDE from where you run your Python code may use a different Python version when you have multiple versions installed.

For example, you can check the Python interpreter used in VSCode by opening the command palette (CTRL + Shift + P for Windows and ⌘ + Shift + P for Mac) then run the Python: Select Interpreter command.

You should see all available Python versions listed as follows:

You need to use the same version where you installed Requests so that the module can be found when you run the code from VSCode.

Once done, you should be able to import Requests into your code.

Conclusion

In summary, the ModuleNotFoundError: No module named 'requests' error occurs when the requests library is not available in your Python environment. To fix this error, you need to install requests using pip.

If you already have the module installed, make sure you are using the correct version of Python, deactivate the virtual environment if you have one, and check for the Python version used by your IDE.

By following these steps, you should be able to import the requests module in your code successfully.

I hope this tutorial is helpful. Until next time! 👋

Понравилась статья? Поделить с друзьями:
  • Modulenotfounderror no module named pip ошибка
  • Modulenotfounderror no module named pil ошибка
  • Modulenotfounderror no module named matplotlib ошибка
  • Modulenotfounderror no module named kivy ошибка
  • Module object is not callable python ошибка