About 299,000 results
Open links in new tab
  1. 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 .venv Activate a …

  2. How to create a venv with a different Python version

    Dec 20, 2021 · I had a similar case, and here is how I solved it with using pyenv to install different versions of the Python interpreter and venv to create a virtual environment.

  3. What is a virtualenv, and why should I use one? - Stack Overflow

    Feb 1, 2017 · Virtual environments, or "virtualenvs" are lightweight, self-contained Python installations, designed to be set up with a minimum of fuss, and to "just work" without requiring extensive …

  4. Python venv not creating virtual environment - Stack Overflow

    Sep 26, 2019 · I'm trying to create a virtual environment for my current Django project using python3 -m venv env however the command doesn't create any directory with bin/include/lib folders. What …

  5. How can I set up a virtual environment for Python in Visual Studio …

    Jan 9, 2019 · In my project folder I created a venv folder: python -m venv venv When I run command select python interpreter in Visual Studio Code, my venv folder is not shown. I went one level up like …

  6. python - Getting error in VS code when trying to create virtual ...

    Feb 26, 2022 · Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Then when I try to create my virtual environment by using this command …

  7. virtualenv - Error when creating virtual environment in VS Code: …

    Nov 22, 2023 · I have VS Code (v. 1.84.2) along with the Python extension (v2023.20.0). I'm trying to set up a virtual environment with the following steps: I typed Ctrl-Shift-P to open the Command Palette. I …

  8. python - How can I activate my virtualenv in the Visual Studio Code ...

    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.

  9. Failed to create virtual environment in PyCharm - Stack Overflow

    Oct 25, 2021 · I have problem with create virtual environment in PyCharm. Exactly, Python in version 3.10 was add to Path during installation and I use latest version PyCharm community.

  10. Visual Studio Code not letting me choose Virtual environment Python

    Feb 24, 2025 · I replicated the issue in my machine by creating a virtual environment outside the workspace as mentioned before, and I solved it this way: Navigate to your venv and activate it in the …