About 57,400 results
Open links in new tab
  1. 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 …

  2. python - how to activate virtual env in vs code? - Stack Overflow

    Aug 31, 2021 · You need to switch your Python interpreter to point to the one within your venv when you switch the interpreter VS code it create a .vscode folder within your workspace with …

  3. python - Visual Studio Code does not detect Virtual Environments ...

    Mar 30, 2021 · Visual Studio Code does not detect virtual environments. I run vscode in the folder where the venv folder is located, when I try to select the kernel in vscode I can see the main …

  4. python - How to know if Virtual Environment is working in VS …

    5 I’ve read through VS Code’s documentation on creating a virtual environment and I’ve used the venv command to do so, but how do I know if my current Python files are working using that …

  5. python 3.x - Activate venv in vs code - Stack Overflow

    Oct 6, 2021 · If so, you should edit your venv/bin/activate script so that it has the correct value for the VIRTUAL_ENV variable. In your project, do you have a .vscode/settings.json file that is …

  6. How to debug python Azure Functions, that use .venv, inside …

    Oct 27, 2023 · Create new python virtual environment: python -m venv .venv .venv activated with .\.venv\Scripts\activate Initialize new Azure Function: func init then func new I use the Azurite …

  7. python - How to add a virtual environment to VS Code's …

    Apr 6, 2021 · Sometimes launch.json works without specifying the python attribute, but other times the vscode-debugger use the global python instead of the one inside the venv folder, so …

  8. python - can't automatically activate virtual environment in vscode ...

    Feb 20, 2024 · I'm trying to automatically activate the virtual environment .venv in the terminal whenever I open the VS Code workspace. I have Python installed via pyenv. I tried adding the …

  9. VS Code y Python venv: cómo activar un ambiente virtual?

    $ python3 -m venv venv $ source venv/bin/activate $ (venv) python -V Python 3.5.2 Es una de las opciones que aparece en "Select Python Interpreter" pero que which dice que no existe. …

  10. How to set a Python Interpreter from inside a existing virtual ...

    Aug 26, 2020 · Create a virtual environment in the vscode terminal. python3 -m venv ./venv1 or python -m venv ./venv1 Reference: virtual environments. Select Yes when the prompt box …