1

Trying to install the requests module on QPython 3 using pip install requests gives me this error

Error pip.log

What is the cause of this error and how can it be resolved?

Amith KK
  • 555
  • 2
  • 8
  • 20

2 Answers2

1

You should try manually downloading requests(http://www.python-requests.org/en/latest/user/install/#install), extract the contents and copy it to your Lib/site-packages/Requests/ folder, from there python should be able to fetch the module.

Dragon
  • 1,194
  • 17
  • 24
  • 1
    It did not work for me. I do not have a 'Lib/site-packages/' folder, I have 'lib/python3.2/site-packages'. Placing the extracted content there did not allow me to import the module – Sininho Jul 02 '17 at 13:55
0

Have you tried the 1.4.x ? I thought it had solved the issue.

River
  • 206
  • 1
  • 4