About 1,020,000 results
Open links in new tab
  1. VS Code does not find Python kernel - Stack Overflow

    Nov 2, 2022 · I am running VS Code on a Mac OS. I have installed Jupyter extension but I'm unable connect to my Python virtual environments. When I create a new virtual environment with Anaconda, …

  2. Is there a shortcut to comment multiple lines in python using VS Code ...

    Sep 26, 2022 · Instead of indivually typing out a hash tag in front of each line, is there a way to select a block of code and comment/uncomment everything by only pressing a couple shortcut keys?

  3. VSCode: Why isn't debugger stopping at breakpoints?

    Jun 27, 2019 · Downgrading from Python 3.9 to 3.8 worked for me. VC Code 1.56.2 ignored breakpoints running Python 3.9 64-bit on Windows 10 version 20H2. Installing Python 3.8.10 64-bit fixed the …

  4. VS Code Jupyter not connecting to python kernel

    Feb 10, 2022 · VS Code version: 1.94.2 (user setup) OS: Windows_NT x64 10.0.22631 python: 3.10.11 x 32 Solution: Created Venv. VSC connected to Venv. For Jupiter, I specified the interpreter installed …

  5. Python Interpreter Not Found on VS Code - Stack Overflow

    Jun 24, 2024 · you have to install Python first. And in Select Python Interpreter should be some icon to search manually Python on disk.

  6. python - VS Code not recognizing .env file inside workspace folder ...

    Apr 19, 2023 · In order for Python to automatically detect a .env file within a workspace folder, you need to ensure that you have the Python extension installed in VS Code. Once you have the extension …

  7. Conda environment not showing up in VS Code - Stack Overflow

    Aug 9, 2021 · VS Code does not show conda environments that don't contain an interpreter. After you create a conda environment, you need to activate it and install some packages in order to get the …

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

  9. python - How can I view and use notebook variables in VS Code …

    Oct 18, 2020 · As I know ,I can view variables in VS Code by setting breakpoints, Is it possible to view and use the variables likes Spyder in Console? Such as the picture posted bellow: the running result …

  10. How to set the working directory for debugging a Python program in …

    Jan 6, 2024 · How do I execute a Python file with the debugger and specify the working directory for the run?