-
-
Notifications
You must be signed in to change notification settings - Fork 369
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
Fix: ipython version incompatibility #1157
Conversation
ipython requires python>=3.9
Updating according to ipython version requirements
The right IPython version should be picked up by pip when installing in a Python 3.8 env, unless you're using a very old version of it. So I think this is not really necessary. |
I'm using python 3.8.5 at work, it's distributed by our IT (I dont have much control over this). I can create virtual envs and install ipython kernels. Tried the following.
This error disappears if I pin the version of ipython<=8.12 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm using python 3.8.5 at work, it's distributed by our IT (I dont have much control over this).
Ok, I see. I left a small suggestion for you to fix the change you made.
@idling-mind, it would work if your first run |
Updating pip did not resolve my issue. However, I think I found out the root cause. It is related to ipython/ipython#14053. Since I have access to yank the version in this internal pypi, this issue can be resolved with that. |
ipython requires python>=3.9 where as ipykernel requires python>=3.8
This mismatch causes kernel installs with python=3.8 to fail.