About 9,760,000 results
Open links in new tab
  1. python - How do I install pip on Windows? - Stack Overflow

    pip is a replacement for easy_install. But should I install pip using easy_install on Windows? Is there a better way?

  2. 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 …

  3. How to install Python using Windows Command Prompt

    Sep 5, 2017 · 5 Another alternative is to use , e.g., winget install -e --id Python.Python.3.11. Should work out of the box in Windows 11 and modern installations of Windows 10 - according …

  4. How do I install a Python package with a .whl file?

    Jan 11, 2015 · Also make sure the .whl file is of the same platform as you are using, do a python -V to find out which version of Python you are running and if it is win32 or 64, install the correct …

  5. python - How to install packages offline? - Stack Overflow

    What's the best way to download a python package and its dependencies from pypi for offline installation on another machine? Is there any easy way to do this with pip or easy_install? I'm …

  6. Why does "pip install" inside Python raise a SyntaxError?

    Dec 26, 2024 · 398 pip is run from the command line, not the Python interpreter. It is a program that installs modules, so you can use them from Python. Once you have installed the module, …

  7. python - pip install returning invalid syntax - Stack Overflow

    Dec 4, 2017 · I've just installed python 3.6 which comes with pip However, in Windows command prompt, when I do: 'pip install bs4' it returns 'SyntaxError: invalid syntax' under the install word. …

  8. Install Python with cmd or powershell - Stack Overflow

    Sep 30, 2018 · My question is if you can install python with powershell, cmd, vbs or any other language built into Windows already? If this was already asked please redirect me to the answer.

  9. installation - How to install Python packages from the tar.gz file ...

    Mar 15, 2016 · I downloaded the tar file from the Python Package Index (PyPI) and installed it using the easy_install command. In my case, I was trying to install the virtualenv package.

  10. python - How can I install cv2? - Stack Overflow

    Sep 11, 2019 · If you need to install specific version you can use == to check the available version first like pip install opencv-python==, then install the version you require