-
Notifications
You must be signed in to change notification settings - Fork 364
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 map not displaying in jupyterlite. #1040
base: master
Are you sure you want to change the base?
Fix map not displaying in jupyterlite. #1040
Conversation
docs/source/ipyleaflet.ipynb
Outdated
@@ -8,7 +8,7 @@ | |||
"outputs": [], | |||
"source": [ | |||
"import piplite\n", | |||
"await piplite.install('ipyleaflet')" | |||
"await piplite.install('ipyleaflet == 0.17')" |
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.
Maybe the extra spaces around the ==
could be trimmed?
"await piplite.install('ipyleaflet == 0.17')" | |
"await piplite.install('ipyleaflet==0.17')" |
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.
Thanks.This has been changed.
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.
Nice thanks @HaudinFlorence for fixing this 👍
Just left a minor comment above.
Another way to fix this could be to use xeus-python :D |
I would like to do it but I don't know how. |
Fix issue #1020. The first solution proposed by @jtpio in this issue is implemented, that is "pinning the version with piplite.install('ipyleaflet==0.17') in the notebook."