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

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

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

  5. How to install Python packages for a VS Code virtual environment ...

    Apr 5, 2023 · 4 When I follow the command in the VS Code Python tutorial to install a package in the virtual environment, the script only runs successfully using the global interpreter, not the newly …

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

    Sep 11, 2019 · If you are only working with images pip install opencv-python opencv-python If you need support for working videos: pip install opencv-contrib-python opencv-contrib-python If you need a …

  7. python - How to install from requirements.txt - Stack Overflow

    Apr 1, 2021 · I have to install python packages from requirements files that's provided to me. However, when I use pip install -r requirements.txt command I get an error saying ERROR: Invalid requirement …

  8. Install python wheel file without using pip - Stack Overflow

    Mar 21, 2016 · Is it possible to install a Python wheel without using pip? I always have issues with installing with pip, so I usually install libraries manually by copying and pasting. I'm wondering if there i...

  9. python - pip install fails with "connection error: [SSL: CERTIFICATE ...

    Using easy_install: if you are really lazy and don't want to waste much time, use easy_install <package_name>. Note that some packages won't be found or will give small errors. Using Wheel: …

  10. cmd - How do I test if Python is installed on Windows (10), and run an ...

    Jun 22, 2019 · I need to run the 2nd command on windows cmd only if the 1st one fails, in another scneario, I want to open python setup after checking if it is installed or not. I used this command …