-1

I have installed the python in path: C:\Python\Python35-32

I have successfully installed Requests module: enter image description here

But when I try to import - I receive the error as not found. enter image description here

Could you please guide me where I wrong - I am a beginner and using Idle in Windows.

surpavan
  • 1,372
  • 7
  • 34
  • 66
  • 2
    See [this](http://stackoverflow.com/questions/24346472/when-a-python-module-cairo-is-installed-successfully-but-fails-to-import-in-py) and [this](http://stackoverflow.com/questions/37593483/python-3-5-32-bit-windows-import-module-fails-but-pip-install-worked) – mustaccio Aug 13 '16 at 19:10

1 Answers1

2

Python is case sensitive. Use import requests.

Daniel Roseman
  • 588,541
  • 66
  • 880
  • 895
  • Thank you. I think down rating should be given to this website: https://first-web-scraper.readthedocs.io/en/latest/ – surpavan Aug 13 '16 at 10:35
  • 1
    Not really. The website snippets further down use `import requests`, `Requests` is only used with `pip install Requests` because `pip install` commands are _not_ case sensitive, unlike imports. – TrakJohnson Aug 13 '16 at 12:09
  • Thank you, corrected my mistake. – surpavan Aug 13 '16 at 13:45