-
Notifications
You must be signed in to change notification settings - Fork 307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run Cell does not find Jupyter in virtual environment #3774
Comments
Looks like pip venv isn't working. We don't find the activate script. Could you possibly try the insiders build? I added some support for finding the activate script that isn't in the build you're using yet.. |
I Installed the insider build in a clean install of VSCode Insider v1.30.0 (to prevent issue with my day-to-day VSCode). If I start VSCode after I started my venv it works. pipenv shell And then call: code-insidesr . The run cell works. If I start VSCode outside of the venv, it detects the venv from the Pipfile, but is not able to find Jupyter. |
Okay thanks. That helps. Looks like virtual pipenvs aren't supported yet then. |
Ha! I thought since the plugin could find the Pipenv and start it automatically when starting a shell it would do the same for the Jupyter Notebook. Thanks, really happy to be able to work on my notebook in VSCode. Hope the support for Pipenv comes soon. |
Seems that pyenv-virtualenv also has the same problem. Likely we need to find the activate script for other virtual environments besides conda. |
This is the workaround I'm using: Run this as the first cell: #%% Activate virtualenv
virtualenv_path = "./.venv"
exec(
open("%s/bin/activate_this.py" % virtualenv_path).read(),
dict(__file__="%s/bin/activate_this.py" % virtualenv_path)
) This will only work correctly if ipython and your venv use the same python binary. |
Don's work on microsoft/vscode-python#3330 is a precursor to getting this working. |
@rchiodo Hi, I just ran into this error as well via a pipenv virtual environmnent after clicking "Run Cell". It's not working even if I start I'm using
I've verified that jupyter is definitely installed within the virtualenv and up to date as per these instructions. For some reason the debug console starts iterating through the other installed pythons versions? As you can see in the screenshot below, it starts with the correct python in the |
We need to 'activate' the virtual env prior to running jupyter. Right now we're just using the same python. The other jupyters running is us searching for one that will work. We don't actually need the same environment to start jupyter, we just need to point it at the correct one (see jupyter kernel specs). Although now that we know we need to activate it, this will likely change too, as I doubt Jupyter/iPython activates the virtual environment before using it. |
@rchiodo I see. So selecting a python interpreter won't also activate the virtualenv? I feel as though this worked in the past when I was regular pipenv without setting Is there some special handling for pipenv that activate the virtualenv that is no longer being run now that I'm using the |
Selecting a python interpreter doesn't run the pipenv shell command. At least not yet. That's the change we're working on. It never did. We simply run the python within the same directory. (The one that pipenv install creates/copies) However if you run vscode from within the pipenv shell, it should work. That's the new part that I'm not sure why it isn't working for you. |
For #3537, #4001 - Use Don's method for adding environment variables to python execution
This should be fixed now in our insider's build (well in about half an hour after the build updates). Please let me know if it isn't. Thanks. |
Thanks, @rchiodo. Insider's build worked for me (venv environment via pyenv-virtualenv). |
The same problem, pyenv can work with vscode pyhton, expecting support pipenv. |
@lonelygo are you saying the insider's build doesn't work with pipenv? I tested that so it should work. |
So I'm either hitting this or a related bug, let me know if I should open a new issue. I'm using I have two different folders with two different virtual environments, When I use
message - even though However, when I use So I found this issue today so I downloaded the insiders build and tried again. When I use Unfortunately, when I the tried in the This behavior persists after closing and starting Let me know if you need any more information or if I should start a separate issue. This is pretty frustrating since the only way I can start up |
So I think there's a problem in the insider's build with it not showing any of the message popups. That would explain the different behavior. I'm actually looking into that problem on this issue here: #3608 With your 'purl' environment, can you try running these commands: python -m jupyter notebook --version Those are what we use to determine whether or not jupyter is installed and we can use it. Additionally if you go to Help | Toggle Developer Tools, pick the console, right click and save it to disk, that should tell us why your purl environment isn't being picked. |
Also worth noting is that after these tests with |
If you open your settings.json for your workspace, what does python.pythonpath say? That's what we use for the Python Interactive window. It doesn't use the current file, it (for better or worse) always uses the python path for the entire workspace. |
And this
is not expected unless the workspace python in use actually doesn't have jupyter installed. |
Yes the workspace setting is used to determine what python to start jupyter with. We don't currently use the folder setting or per file setting. I assume this means you have multiple folders open in your workspace? The connection reset issue is new. That's entirely in the jupyterlab npm module we use to talk to them. Not sure why it's resetting. I did just upgrade our jupyterlab bits though. That might help. The insider's build for that will be available in about 30 minutes. |
@ollema This may be off-base, but I found myself having similar connection reset issues and pinning tornado to version 5 fixed it for me. |
@ollema using multiple folders inside a single workspace would behave the way you describe, so it's not really supported well. It always picks the 'global' python to use for the interactive window. Would it be better if it just started with the python that matched the first cell's file that you ran? (Or maybe just the file that happens to be active when you start it). Or maybe you'd like to pick which one to run if you have multiple available? |
@rchiodo okay, got it!
For example, if I start up Picking from multiple would also be nice! But maybe that's more work for you guys? |
Yeah it's more work but it might make sense if we can't decide which one is the 'correct' one. We have this issue here that is basically use the current file: Can you upvote it? I'm going to add the further suggestion that if there are multiple possible for a folder, we should ask the user which one to use. |
Upvoted! Thanks! |
Environment data
Actual behavior
Notification with the message: Running cells requires Jupyter notebooks to be installed.
I am able to start jupyter notebook in my virtual environment.

Expected behavior
Jupyter Notebook being started.
Steps to reproduce:
Logs
Output for
Python
in theOutput
panel (View
→Output
, change the drop-down the upper-right of theOutput
panel toPython
)Output from
Console
under theDeveloper Tools
panel (toggle Developer Tools on underHelp
)In the console of the Developper Tools I see that the plug-in is looking for Jupyter in a bunch of my pyenv Python but not my virtualenv.
The text was updated successfully, but these errors were encountered: