-
Notifications
You must be signed in to change notification settings - Fork 294
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
Install kernel dependencies with the -U flag #4758
Comments
We might also want to consider makign it possible to pass in the argument TLDR - ensure we can pass more than just the one argument. |
This works, see here #5689 (user tried this approach to get unblocked recently) |
We should probably use |
Discussed solution:
|
I do get a prompt for conda and non conda environments, but for conda the install command fails. Rerunning the same command that the extension generates in the terminal doesn't work. I had to rerun the bare install command from Anaconda Prompt. Not sure if this is a VS Code integrated terminal issue. |
validated, in both the jupyter and python extensions |
When install ipykernel, etc we should update the depednencies.
We have had plenty of cases where users had it installed, but versions were incorrect.
They had to uninstall & re-install.
For instance I had an issue with ipykernel in a conda environment.
Had an old version of ipython, hence when installing ipykernel, an old compatible version got installed. However that version of ipython is too old, similarly its possible the versio of ipykernel is also old.
The solution was
conda install ipykernel --update-deps --force-reinstall
We might want to do the same for
pip install ipykernel -U --force-reinstall
How to test/validate
The text was updated successfully, but these errors were encountered: