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. 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 to install pip with Python 3? - Stack Overflow

    sudo yum install python-setuptools sudo easy_install pip Installing pip on CentOS 7 for Python 3.x Assuming you installed Python 3.4 from EPEL, you can install Python 3's setup tools and use it to …

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

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

  9. python - pip install -r requirements.txt is failing: "This environment ...

    Mar 1, 2023 · This is due to your distribution adopting PEP 668 – Marking Python base environments as “externally managed”. TL;DR: Use a venv: python3 -m venv .venv source .venv/bin/activate python3 …

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