admin管理员组文章数量:1342642
This is a bug I cannot wrap my head around. I should first mention that everything works perfectly on PyCharm notebook Professional Edition (but I prefer VSCode's way of using notebooks).
When I click on Select Kernel
, I only see my two base Python environments. Both work. I would however like to use one of my virtual environment. So I used the >Python: Select Interpreter
option:
Here, it's easy for me to find the path/to/python.exe
of my virtual environment (Python 3.12.5) by clicking on Enter interpreter path
:
However, when I click and locate path/to/python.exe
, nothing happens.
There is still the Select Kernel
button saying that I have not selected any Python environment for my notebook.
Things I did:
- I restarted my computer.
- I uninstalled VSCode, and reinstalled VSCode.
- I looked for Windows Updates.
- I looked for VSCode Updates. None were found. I'm on 1.97.2.
- I installed
ipykernel
to my virtual environment but it was already installed. - I made sure I had the
Python
extension enabled on VSCode. - I made sure I had the
jupyter
extension enabled on VSCode. - I made sure the base environments worked as expected when choosing them in
Select Kernel
. They did. - I made sure everything worked with my virtual environments in PyCharm Professional. They did.
- I used
python3 -m ipykernel install --user --name=projectname
.
This is a bug I cannot wrap my head around. I should first mention that everything works perfectly on PyCharm notebook Professional Edition (but I prefer VSCode's way of using notebooks).
When I click on Select Kernel
, I only see my two base Python environments. Both work. I would however like to use one of my virtual environment. So I used the >Python: Select Interpreter
option:
Here, it's easy for me to find the path/to/python.exe
of my virtual environment (Python 3.12.5) by clicking on Enter interpreter path
:
However, when I click and locate path/to/python.exe
, nothing happens.
There is still the Select Kernel
button saying that I have not selected any Python environment for my notebook.
Things I did:
- I restarted my computer.
- I uninstalled VSCode, and reinstalled VSCode.
- I looked for Windows Updates.
- I looked for VSCode Updates. None were found. I'm on 1.97.2.
- I installed
ipykernel
to my virtual environment but it was already installed. - I made sure I had the
Python
extension enabled on VSCode. - I made sure I had the
jupyter
extension enabled on VSCode. - I made sure the base environments worked as expected when choosing them in
Select Kernel
. They did. - I made sure everything worked with my virtual environments in PyCharm Professional. They did.
- I used
python3 -m ipykernel install --user --name=projectname
.
4 Answers
Reset to default 0- Enter interpreter path: path/to/python.exe
Then
>Jupyter: create interactive Window
so that kernel will connect to the Python environment automatically. And now you can select the kernel in your ipynb.
Or
- Add virtual environment to the workspace so that python can detect the python.exe.
We ran into the same issue multiple times. However, I noticed later that the issue is more repetitive when the venv
location is outside the reach of your workspace base directory or too deep inside the sub folders. I suggest putting your Python venv
in the main directory where your workspace is opened. Then restart VSCode
if it doesn't run it.
Previous Answer
To start you can install conda
- Miniconda or Anaconda from the official website. After installation, open a terminal or command prompt.
To create a new environment named myenv
with Python 3.10, run:
conda create --name myenv python=3.10
Then you can manage all your python package in that myenv
environment; Let me know if it solves this problem;
VS code should pick it up automatically;
Current Answer
- Activate your environment in a terminal
source activate myenv
- Install ipykernel if not already present:
pip install ipykernel
- Register the kernel explicitly:
python -m ipykernel install --user --name myenv --display-name "Python (myenv)"
The above is similiar to one of the other solution provided;
Here is what we can do next:
- Open VSCode and make sure you have the Python and Jupyter extensions installed and enabled.
- Reload or Restart VSCode after installing new extensions or registering a new kernel.
Additional step try to clear and refresh interpreter cache:
- Open the Command Palette (Ctrl + Shift + P)
- Do this clear cache and reload window
- Reload VSCode.
Now even more checks (Verify VSCode Settings)
- Go to File → Preferences → Settings (or open Command Palette → “Preferences: Open Settings (JSON)”).
- If you have a custom path for virtual environments, check:
"python.venvPath": "C:\\path\\to\\environments"
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 terminal.Install
ipykernel
in your virtual environment.
pip install ipykernel
Register the virtual environment as a jupyter kernel
python -m ipykernel install --user --name myenv --display-name "Python (test)"
If everything goes well, you should see a message like:
Installed kernelspec myenv in C:\Users\...\jupyter\kernels\myenv
Go to your notebook in
VSCode
and use the command paletteJupyter: Select Interpreter to Start Jupyter Server
to select the new kernel. If the kernel does not appear immediately, try restartingVSCode
.
本文标签: Visual Studio Code not letting me choose Virtual environment PythonStack Overflow
版权声明:本文标题:Visual Studio Code not letting me choose Virtual environment Python - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743663940a2518412.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
Python: Select Interpreter
again? – mkrieger1 Commented Feb 24 at 15:04python.exe
, the window closes, and I'm back to square one without anything changed (or maybe something that I couldn't see did). – FluidMechanics Potential Flows Commented Feb 24 at 15:06Select Kernel
are the base ones. I just checked again, those do not point to the same path as my virtual environment and they do not contain the library that my virtual environment contains. – FluidMechanics Potential Flows Commented Feb 24 at 15:09Select Kernel
is something different fromSelect Interpreter
. MaybeSelect Interpreter
works but you think it doesn't because you expect it to also select a kernel (whatever that means exactly). – mkrieger1 Commented Feb 24 at 15:10