+ 2
Libraries
I am working on API calls using requests dictionary. But I am getting an error message that import requests Exception has occurred:Module not found error. How do I fix it? I am using visual studio code. Please help!
6 Answers
+ 7
Could be line 3🤔🤔🤔
No... fun
Please send first 100 lines of your code
+ 5
Requests is an external library, not part of core python. If it is not installed on the python environment where you try to run it, then first you need to install like this (or some variance of it, based on your operating system)
python -m pip install requests
See also
https://docs.python-requests.org
+ 3
Add this line in 1st line on your code:
import os
os.system('pip install-qq requests')
+ 2
Most likely you did not install the library.
Use pip or pip3 to install it.
Something like: pip install requests
0
Thank you for your support👍
0
pip install requests
Hot today
Python — File Handling
0 Votes
Help me solve this (using loop)
2 Votes
What is wrong? Error on test.
1 Votes
Help me wiht python
1 Votes
Question is write a c program to print prime numbers up to n and print the largest number in array.
1 Votes
Help me
0 Votes