About 149,000 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 - How can I activate a virtualenv in Linux? - Stack Overflow

    A virtual environment has no meaning outside a shell, so you need to run the shell and pass it a command line that changes to the correct directory and activates the virtualenv, then does …

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

  4. How to activate the virtual environment for python?

    Jan 19, 2022 · Your virtual environment was created with virtualenvwrapper. Activate it with command workon mysite-virtualenv in bash console on PythonAnywhere. For the web app you …

  5. How to create virtual env with Python 3? - Stack Overflow

    To create a virtual environment, go to your project’s directory and run the following command. This will create a new virtual environment in a local folder named .venv: python3 -m venv …

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

    3 This worked for me: To activate a Python virtual environment in Visual Studio Code's PowerShell terminal without needing administrator rights, navigate to the script's directory and …

  7. python - How can I activate my virtualenv in the Visual Studio …

    Jul 13, 2022 · How can I activate my virtual environment in the Visual Studio Code terminal? I've tried using the workspace settings method, but the settings file was empty.

  8. Activating Python Virtual Environment on Windows 11

    Dec 31, 2022 · python -m venv env This will create a new folder called env inside the directory where you executed the command. You can activate the created virtual environment by …

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

    Jan 19, 2012 · Then on Windows, type dir (on unix, type ls). You will get 5 folders include, Lib, Scripts, tcl and 60 Now type .\Scripts\activate to activate your virtualenv venv. Your prompt will …

  10. python - How to activate an Anaconda environment - Stack …

    The conda activate command also has advantages of (1) being universal across all OSes, shells, and platforms, and (2) not having path collisions with scripts from other packages like python …