About 1,870,000 results
Open links in new tab
  1. Dealing with multiple Python versions and PIP - Stack Overflow

    Apr 12, 2018 · The current recommendation is to use python -m pip, where python is the version of Python you would like to use. This is the recommendation because it works across all versions of …

  2. Multiple Python versions on the same machine? - Stack Overflow

    Mar 8, 2019 · Installing multiple versions On Unix and Mac systems if you intend to install multiple versions of Python using the same installation prefix (--prefix argument to the configure script) you …

  3. How to run multiple Python versions on Windows - Stack Overflow

    Jan 3, 2011 · 280 I had two versions of Python installed on my machine (versions 2.6 and 2.5). I want to run 2.6 for one project and 2.5 for another. How can I specify which I want to use? I am working on …

  4. How to completely remove Python from a Windows machine?

    uninstalling all python interpreters (I had many versions ranging from 3.7 to 3.10) and leaving only one solved the issue for me. Pip worked normally afterwards and detected imports. Im on windows 10

  5. Use different Python version with virtualenv - Stack Overflow

    Oct 8, 2009 · It's still possible to use a different python version with venv. Instead of providing an argument, like with virtualenv, you just be sure to use the appropriate python version to run venv. …

  6. How to run different python versions in cmd - Stack Overflow

    How can I configure windows command dialog to run different python versions in it? For example when I type python2 it runs python 2.7 and when I type python3 it runs python 3.3? I know how to confi...

  7. How to install multiple versions of Python in Windows?

    Mar 18, 2022 · Do not have them add python to your PATH environment variable, but in only one of the installs have it install the python launcher py. That will help you in using multiple versions.

  8. How can I change the Python version in Visual Studio Code?

    Jan 7, 2018 · On the bottom left of your screen, look for "Python X.X.X ". This is the currently detected/configured version of Python for your project, and clicking it brings you to the interpreter …

  9. How do I install a different Python version using apt-get?

    Jul 13, 2015 · I would consider using virtual environments instead of installing python versions via apt-get. Using virtual environments, see here, are a good practice for developing with python.

  10. Which version of Python do I have installed? - Stack Overflow

    I have to run a Python script on a Windows server. How can I know which version of Python I have, and does it even really matter? I was thinking of updating to the latest version of Python.