About 50 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. How to install Python using Windows Command Prompt

    Sep 5, 2017 · Is it possible to install Python from cmd on Windows? If so, how to do it?

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

  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 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

  6. How do I install Python dev-dependencies using uv?

    Aug 22, 2024 · I'm trying out uv to manage my Python project's dependencies and virtualenv, but I can't see how to install all my dependencies for local development, including the development …

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

  8. How to install Python (any version) in Windows when you've no …

    Nov 15, 2020 · From the Python website, download the MSI version of Python you wish to install. Then open your command prompt and use this command: msiexec /a python-2.7.10.msi /qb …

  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. What's the difference between "pip install" and "python -m pip …

    Sep 9, 2014 · Therefore, it will install third-party libraries for the Python that was found in the PATH. On Windows, using py -m pip at the command line will (unless the system is badly …