About 53 results
Open links in new tab
  1. python - How to activate virtual environment from Windows 10 …

    Oct 23, 2017 · I'm trying to create and activate a virtual environment, using Windows 10 command prompt. I know that virtualenv is installed correctly, as the command virtualenv venv Works.

  2. How can I check all the installed Python versions on Windows?

    Learn how to check all installed Python versions on Windows using command line tools and environment variables.

  3. windows - How to execute a command prompt command from python …

    Mar 30, 2011 · import os os.system('cmd') Now just run this code and see the whole windows command prompt in your python project!

  4. windows 10 - 'Python not found' despite having been installed - Stack ...

    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 Microsoft Store, or …

  5. How should I write a Windows path in a Python string literal?

    Apr 9, 2023 · Path takes a path-like string and adjusts everything for the current OS, either Windows or Linux. For example, on Linux it would convert all backslashes to forward slashes, and on Windows it …

  6. python - How to add a custom CA Root certificate to the CA Store used ...

    The trick is to use --trustedhost to install python-certifi-win32 and then after that, pip will automatically use the windows certificate store to load the certificate used by the proxy.

  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. Activating Python Virtual Environment on Windows 11

    Dec 31, 2022 · I am trying to create a venv virtual enviroment for Python in Window's command prompt. I created the enviroment; however, I am having difficulties using it because when I run the …

  9. python - How to add to the PYTHONPATH in Windows, so it finds my ...

    Sep 13, 2010 · For anyone trying to achieve this with Python 3.3+, the Windows installer now includes an option to add python.exe to the system search path. Read more in the docs.

  10. python - 'virtualenv' won't activate on Windows - Stack Overflow

    0 To install a virtual environment in Windows PowerShell only, but to activate, you'll need to run Windows PowerShell as an Administrator: pip install virtualenv virtualenv %Name of virtual …