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 · 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 to the docs. The …

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

  4. installing python packages without internet and using source code as ...

    If your server uses a different version of Python or a different system architecture, make sure to download the packages that match the server’s Python version and architecture.

  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 · 32 My environment: Ubuntu 18.04 LTS (Bionic Beaver) (also tried on Ubuntu 19.04 (Disco Dingo)) I use/need Python 3 (3.6.8 installed). I need cv2, which is a model of OpenCV. I tried …

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

  9. python - How to pip or easy_install tkinter on Windows - Stack Overflow

    pip install python-tk I'm on Windows with Python 2.7 and I don't have apt-get or other system package managers.

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