About 51 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. I've …

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

  3. python - Issue with virtualenv - cannot activate - Stack Overflow

    Jan 19, 2012 · On Windows, virtualenv creates a .bat/.ps1 file, so you should run venv\Scripts\activate instead (per the virtualenv documentation on the activate script). Just run activate, without an …

  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. python - 'virtualenv' won't activate on Windows - Stack Overflow

    step 4. If the activate.bat file is there in the script folder, proceed. step 5. Run this in your shell: ... Step 6. To activate virtualenv on Windows, activate script is in the Scripts folder: ... Step 7. Check for the …

  6. Activate venv (Python 3.7.2) for Windows - Stack Overflow

    Jan 22, 2019 · Activate venv (Python 3.7.2) for Windows [duplicate] Asked 7 years, 3 months ago Modified 6 years, 3 months ago Viewed 72k times

  7. Python virtualenv is not activated on Windows 11 - Stack Overflow

    May 6, 2022 · I’m using Python 3.10 and Windows 11. I try to activate venv with the following command: .\\onlineShop\\Scripts\\activate.bat I create the venv using the following command: python -m venv …

  8. python - Como ativar o VirtualEnv no prompt de comando do …

    Mar 4, 2021 · No Linux eu consigo executando . bin/activate Tentei o mesmo comando no Windows, mas não funcionou. Como faço para ativar o virtualenv no Windows?

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

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

    2 On a Windows system, after opening a PowerShell terminal in VS Code You need to run the two lines below: first setting execution policy then activating virtual environment.