About 91,400 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. python - Issue with virtualenv - cannot activate - Stack Overflow

    Jan 19, 2012 · If you’re using Windows, use the command "venv\Scripts\activate" (without the word source) to activate the virtual environment. If you’re using PowerShell, you might need to capitalize …

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

    To activate a Python virtual environment in Visual Studio Code's PowerShell terminal without needing administrator rights, navigate to the script's directory and execute::

  4. python - How to activate virtualenv on Windows? - Stack Overflow

    Jan 3, 2021 · To create a virtual environment on windows use python -m venv <env_name> To activate a virtual environment on windows use .\env_name\Scripts\activate.bat **Please note the slashes on …

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

  6. python - virtualenv in PowerShell? - Stack Overflow

    If you are using python -m venv venv to build your virtual environment, then the name of script would be Activate.ps1.

  7. python - How do I activate a virtualenv inside PyCharm's terminal ...

    Mar 10, 2014 · For Windows users: when using PyCharm with a virtual environment, you can use the /K parameter to cmd.exe to set the virtual environment automatically. PyCharm 3 or 4: Settings, …

  8. How to activate Python virtual environment in VS Code's terminal in ...

    I have created a Python virtual environment using VS Code. The virtual environment is created successfully but I am not able to activate it. When I am trying to activate my virtual env using &quot;

  9. Activate virtual environment in windows using Git-Bash

    I am trying to activate virtual environment in windows using Git-Bash I used this line and this works fine virtualenv project1_env Then when trying this line to activate .\\project1_env\\Scripts\\

  10. Activate virtualenv and run .py script from .bat - Stack Overflow

    Nov 22, 2017 · 71 I'd like to use Windows Task Scheduler to run a python script within a virtual environment. I'd like the Scheduler to run a .bat file that will activate the virtualenv run the script …