About 72,000 results
Open links in new tab
  1. How do I upgrade the Python installation in Windows 10?

    Jul 17, 2017 · 181 Every minor version of Python, that is any 3.x and 2.x version, will install side-by-side with other versions on your computer. Only patch versions will upgrade existing installations. So if …

  2. How to update Python version in Terminal? - Stack Overflow

    Mar 9, 2013 · The path that you're using is probably going to one version of python in your terminal but you have settings in whatever program you are using for the "python framework" is pointing to a …

  3. macos - How do I upgrade python on Mac? - Stack Overflow

    May 6, 2024 · To upgrade Python on your Mac, you should avoid using pip as it is a package manager for Python libraries, not for Python itself. Instead, you can download the latest version of Python from …

  4. pip - Upgrade Python in a virtual environment - Stack Overflow

    Is there a way to upgrade the version of Python used in a virtual environment (e.g., if a bugfix release comes out)? I could pip freeze --local > requirements.txt, remove the directory, and pip

  5. How do I update a Python virtual environment with `venv` (in Python …

    Closed last year. I have recently installed Python 3.8.0 alongside Python 3.7.4. I have some virtual environments (created using python -m venv <directory> that are based on v3.7.4. How do I update …

  6. Upgrade python packages from requirements.txt using pip command

    pip-upgrade -p django -p celery -p dateutil If you need to upgrade to pre-release / post-release version, add --prerelease argument to your command. Full disclosure: I wrote this package.

  7. How to update Python? - Stack Overflow

    Feb 27, 2013 · For example, these answers would apply to updating from 64-bit Python-2.7.10 to 64-bit Python-2.7.11, ie: the same bit-version. While it is possible to install two different bit versions of …

  8. How to update/upgrade a package using pip? - Stack Overflow

    Nov 2, 2017 · What is the way to update a package using pip? those do not work: pip update pip upgrade I know this is a simple question but it is needed as it is not so easy to find (pip …

  9. How do I upgrade to Python 3.6 with Conda? - Stack Overflow

    Jan 9, 2017 · Anaconda had not updated Python internally to 3.6, but later versions of Anaconda has a Python 3.6 version here. a) Method 1 If you wanted to update, you will type conda update python To …

  10. How to upgrade Python venv version - Stack Overflow

    Feb 14, 2022 · However, it might be that this fails because your hook-alias changed and that the python installation is different from the one used to create the venv. From the docs regarding --upgrade: …