About 12,800,000 results
Open links in new tab
  1. How can I find where Python is installed on Windows?

    Mar 15, 2009 · I want to find out my Python installation path on Windows. For example: C:\\Python25 How can I find where Python is installed?

  2. Find where python is installed (if it isn't default dir)

    May 17, 2017 · 243 Python is on my machine, I just don't know where, if I type python in terminal it will open Python 2.6.4, this isn't in it's default directory, there surely is a way of finding it's …

  3. 'Python not found' despite having been installed [duplicate]

    Feb 28, 2021 · I've installed Python's latest version. However, when I write in command prompts python --version I get: Python was not found; run without arguments to install from the …

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

  5. python - How do I solve "error: externally-managed-environment" …

    When I run pip install xyz on a Linux machine (using Debian or Ubuntu or a derived Linux distribution), I get this error: error: externally-managed-environment × This environment is …

  6. Python setup failed error 0x80070005 access denied

    Jun 13, 2018 · After installation successfully completes, enable the appropriate aliases for python.exe, python3.exe and possible other version-specific ones. The fix for this is in the …

  7. How to install Python (any version) in Windows when you've no …

    Nov 15, 2020 · From the Python website, download the MSI version of Python you wish to install. Then open your command prompt and use this command:

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

    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 …

  9. Adding Python to PATH on Windows - Stack Overflow

    Whilst not valid to you, with the Python 3.6 Windows Installer (and potentially earlier versions) you can choose to "Customise" your installation and there is a checkbox to add Python to your path.

  10. How do I find the location of my Python site-packages directory?

    python -m site --user-site If this points to a non-existing directory check the exit status of Python and see python -m site --help for explanations. Hint: Running pip list --user or pip freeze --user …