-
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
WebPanel never comes up during launching jupyter server. Just gets stuck saying "Starting Jupyter Server" #3608
Comments
same here, starting forever dev tool console: ''' source: %c[Extension Host] %cNo editors associated with document: d:\xxx\Git\xxxxxxxxxxx.vscode\settings.json %c[Extension Host] %c(node:17552) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. %c[Extension Host] %cNo editors associated with document: c:\Users\xxxxxxxxxx\AppData\Roaming\Code\User\settings.json |
You should be able to workaround the bug by the command 'Reload Window'. Otherwise I just submitted the fix for this. It will be in our next insider's build and release next month. |
Insiders build is here: |
@rchiodo thank you for promptly respond! I have tried 'reload window' command and did not work. May I know how to use/install this insider build please, so I can have a test run before the next release. |
You download the vsix and run the "Install Extension from VSIX" command. That should overwrite your Python Extension with the insiders bits. You can check this by looking at the version number in the extensions tab. It should be the number I show below or higher (in case you get a newer build after I post this comment) |
@rchiodo I have installed the VSIX and tried again. Still, 'starting Jupyter server' is runing forever (I can start a Jupyter notebook from cmd only using about 2 sec) I have screenshot the error information from developer tools skip some lines |
Is that the last thing logged? There should definitely be more logging after that. Something like so:
Generating CSS ... should be the last thing that was happening before it got stuck before. Can you also check to see that you don't have the 'Jupyter' extension installed? Don's extension interferes with our bits. |
And what does your Python extension version say? Just want to double check the vsix actually installed. |
Can you try downloading the VS Code insiders, installing just the insider's python extension and running from there? The Anaconda Extension may cause problems. Not sure. You might also try just running the command "Show Python Interactive Window" and see what console log output you get. |
If you're not getting the 'Loading web panel' output, something might be going wrong just loading the jupyter types (that happens about the same time we start opening the web panel) |
I have installed VS Code insider and installed this VSIX file. It repeated the same output as the last scenario, that stuck at activating environment ..... This time I only loaded python extension ONLY |
Okay sounds like we'll need to add more logging to figure out your issue. Give me an hour or two and I'll push new bits with more logging to the insider's build. |
Add some more logging for issue #4424
Add some more logging for issue #4424 For #4424 <!-- If an item below does not apply to you, then go ahead and check it off as "done" and strikethrough the text, e.g.: - [x] ~Has unit tests & system/integration tests~ --> - [x] Pull request represents a single change (i.e. not fixing disparate/unrelated things in a single PR) - [x] Title summarizes what is changing - [x] Has a [news entry](https://github.com/Microsoft/vscode-python/tree/master/news) file (remember to thank yourself!) - [x] Has sufficient logging. - [ ] Has telemetry for enhancements. - [ ] Unit tests & system/integration tests are added/updated - [ ] [Test plan](https://github.com/Microsoft/vscode-python/blob/master/.github/test_plan.md) is updated as appropriate - [ ] [`package-lock.json`](https://github.com/Microsoft/vscode-python/blob/master/package-lock.json) has been regenerated by running `npm install` (if dependencies have changed) - [ ] The wiki is updated with any design decisions/details.
@rchiodo thanks Rich. Let me know whenever ready to start the next experiment :) |
Hi @hidesoon, the insiders should be ready now. There was some build problems yesterday so I was waiting for the nightly. It has the extra logging in it now. Can you make sure that you have a cell defined and run it from the 'Run Cell' over top of it? That code path has the most logging right now. Thanks. |
Hi @rchiodo, sorry for late reply, I was on a business trip. I updated the python extension to
I have tested about 5 times, and each test, it stopped at the same place with the same log. Only one time of the 5 tests, cmd prompted out an error message, I think that is for Conda. Enclosed the log and error report for you. |
Okay the logging I added didn't show up. That means it's crashing even earlier than I thought. Your error report does show something interesting though. Looks like your conda environment is failing to initialize. My conda version is behind yours, let me try upgrading and see if I can repro. I would suspect you could get this to work if you used something other than conda if possible. |
No that works fine for me. What's your window's locale set to? Something is causing conda to crash. I think we can do a better job of showing an error in this case, but I don't think we can work around it. It would be an anaconda bug. |
For #4424 <!-- If an item below does not apply to you, then go ahead and check it off as "done" and strikethrough the text, e.g.: - [x] ~Has unit tests & system/integration tests~ --> - [x] Pull request represents a single change (i.e. not fixing disparate/unrelated things in a single PR) - [ ] Title summarizes what is changing - [x] Has a [news entry](https://github.com/Microsoft/vscode-python/tree/master/news) file (remember to thank yourself!) - [x] Has sufficient logging. - [ ] Has telemetry for enhancements. - [ ] Unit tests & system/integration tests are added/updated - [ ] [Test plan](https://github.com/Microsoft/vscode-python/blob/master/.github/test_plan.md) is updated as appropriate - [ ] [`package-lock.json`](https://github.com/Microsoft/vscode-python/blob/master/package-lock.json) has been regenerated by running `npm install` (if dependencies have changed) - [ ] The wiki is updated with any design decisions/details.
It should be an anaconda bug,,,, I re-installed anaconda,,, and it works well now...
Suggestion: Very appreciate your help indeed, @rchiodo |
Thanks @hidesoon. I'll look for the anaconda bug. The markdown issue you describe should be fixed in our latest. Or at least I can't repro it. Just to make sure, you typed this into the code editor?
That gives me this: % ## [markdown] |
sorry
after updated today, this problem has gone Thanks @rchiodo |
@rchiodo I believe I have found the main issue from another comment online. When I open a new VS Code window and navigate to a python file with # %% jupyter cells in it the Python environment gets set to some virtualenv I have not created (Example shown below). With this trying to run a cell it gets the interactive window stuck and it gets hung on starting Jupyter like so many comments I have found. Attached is the log below: I believe this has to do with VS Code setting some initial environment causing the issue. Now if I select the anaconda base environment as shown below, then Jupyter starts correctly and works: Attached is the working log file: I hope this helps solve the issue. |
@mwentzWW your first virtualenv not working is crashing jupyter (so it must exist)
It might be your globally installed python and we're not picking up the environment correctly? |
@rchiodo It might be some issue with an older environment, but I only have one version of Python on my machine through Anaconda. When I select my environments the (virtualenv) isn't listed there, but is still set as the default environment and it won't even run my .py files correctly. Any suggestions on how to fix the default environment? Is this issue only occurring on my machine? Default broken environment: List of environments that work: |
@rchiodo My default Python Path was set to the "current: C:\Anaconda3.7\pythonw.exe" from above, and I changed it to just the normal python.exe and the "(virtualenv)" issue doesn't appear to be happening anymore. |
@mwentzWW I'm going to create a new issue for you: microsoft/vscode-python#5014. The default environment should be one that works AFAIK. |
After some logging, I think the problem is here:
We could replace this with something else. Something that searches all the files and opens them looking for pattern matches on the contents.
The text was updated successfully, but these errors were encountered: