About 51 results
Open links in new tab
  1. How to install requests module in Python 3.4, instead of 2.7

    May 21, 2015 · I have both Python 2.7 and 3.4 installed on my Ubuntu 14.04 machine. I want to install the 'requests' module so it is accessible from Py3.4. When I issued pip install requests on my …

  2. python - How to install requests module with pip? - Stack Overflow

    May 29, 2020 · C:\Users\khern>python 'python' is not recognized as an internal or external command, operable program or batch file. Can someone tell me what I'm doing wrong? I'm new to …

  3. Error "ImportError: No module named requests" - Stack Overflow

    Requests is not a built-in module (it does not come with the default Python installation), so you will have to install it: Mac OS X and Linux Python 2: sudo pip install requests Python 3: sudo pip3 install …

  4. Como puedo instalar requests en python? - Stack Overflow en español

    File "cabeceras.py", line 4, in <module> import requests ModuleNotFoundError: No module named 'requests' En el archivo de python lo he importado con import requests Ya he instalado el modulo …

  5. How do I enable Python requests? - Stack Overflow

    Apr 1, 2021 · Install requests on machine you are going to use it: pip install requests. Note if you are on linux you might have 2 versions of python installed: python 2.* and python 3.* If this is the case using …

  6. python - How do I solve "error: externally-managed-environment" …

    When I run pip install xyz on a Linux machine (using Debian or Ubuntu or a derived Linux distribution), I get this error: error: externally-managed-environment × This environment is externally ma...

  7. How to install requests module in python 3.4 version on windows?

    What command should I use in command prompt to install requests module in python 3.4 version ??? pip install requests is not useful to install requests module in python 3.4 version. Because while

  8. Why can't I import requests in VS Code? - Stack Overflow

    Aug 18, 2021 · pip3 install requests Additionally, you can tell VS Code to use different Python-interpreter in your system. I e.g. had the same problem, that VS Code code check gave me the warning, that I …

  9. How to install python requests on macos? - Stack Overflow

    I am trying to install the requests package for Python 3.7 on Mac. I already have python 2.7 installed. I have read all the previous questions related to this and none of them could solve the issue...

  10. Cannot use Requests-Module on AWS Lambda - Stack Overflow

    Nov 22, 2016 · 107 I need to do a rest-call within a python script, that runs once per day. I can't pack the "requests" package into my python-package using the AWS Lambdas. I get the error: "Unable to …