Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ModuleNotFoundError: No module named 'requests' in PyCharm

I have a python code in PyCharm in which i am using import requests but the terminal is showing me the following error:

(venv) ahmad@Ahmad:~/Desktop/Spiders$ python test.py Traceback (most recent call last): File "test.py", line 1, in import requests ModuleNotFoundError: No module named 'requests'

But I have installed pip and requests as well.

like image 887
MUHAMMAD AHMAD L1F14BSCS0435 Avatar asked Jan 01 '23 18:01

MUHAMMAD AHMAD L1F14BSCS0435


2 Answers

you can use this :

just go to file > sitting > project : name > project interpreter > add > search and install

like image 187
Saeed Alipoor Avatar answered Jan 03 '23 08:01

Saeed Alipoor


I am guessing you have not set your interpreter or installed the necessary packages in the interpreter in PyCharm.

  • Can you check in your File -> Settings
  • There, on the side panel, you can open your Project: <project_name> and check Project Interpreter

  • This will show the interpreter and the installed packages which you can use.

If the interpreter is empty, you need to add it.

https://www.jetbrains.com/help/pycharm/configuring-python-interpreter.html

Hope this helps.

like image 38
Nidhin Bose J. Avatar answered Jan 03 '23 07:01

Nidhin Bose J.