Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Beginner Python Error
#1
Hello,

I am extremely new to programming/python and I have been watching thenewboston on YouTube going through his Python Programming playlist. In video 26 he is making a web crawler and when I try to run it I get this message

"ModuleNotFoundError: No module named 'requests'"

Any help on how to fix this? I have looked around a bit and found stuff about installing pip3 or something. I don't know how to do this. Any help is appreciated, thanks!
Reply
#2
pip should be installed with Python.

Look here for info.
Reply
#3
Requests does not come with the standard python installation. Get it from PyPi, install, and then you can import and use.

https://pypi.org/project/requests/
Reply
#4
(Aug-30-2022, 02:49 AM)jefsummers Wrote: Requests does not come with the standard python installation. Get it from PyPi, install, and then you can import and use.

https://pypi.org/project/requests/

okay thank you, how do I do this? I am very new to this stuff
Reply
#5
You want to be in whatever environment you want to install. Base is fine if starting out, but using an environment mgr is recommended (such as venv or conda). Then open a terminal window and type
pip install requests

and follow the directions.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Beginner having Syntax Error problem RyanHo 3 2,389 Sep-10-2020, 08:33 AM
Last Post: cnull
  Beginner - simple package installation error mefeng2008 0 1,734 Mar-13-2020, 09:17 AM
Last Post: mefeng2008
  [split] Python beginner: Weird Syntax Error mnsaathvika 1 2,145 Jul-22-2019, 06:14 AM
Last Post: buran
  Beginner Getting an error Boa 5 3,740 Jun-22-2019, 11:46 PM
Last Post: metulburr
  Beginner Level - Name Error Aniket 11 5,050 Apr-11-2019, 07:53 PM
Last Post: loomski
  Python beginner: Weird Syntax Error mentoly 5 10,348 Oct-13-2017, 08:06 AM
Last Post: gruntfutuk
  Display error, beginner help :( Armandas 1 3,195 May-02-2017, 08:39 PM
Last Post: sparkz_alot

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020