We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
bokeh
On the Client dashboard, the instructions for pip installing bokeh don't work for me as written. Am I missing something?
Webpage:
Code and output:
$ pip install bokeh!=3.0.*,>=2.4.2 ERROR: Invalid requirement: 'bokeh!=3.0.*,'
Using pip install bokeh==2.4.2 appears to work fine though.
pip install bokeh==2.4.2
The text was updated successfully, but these errors were encountered:
Thanks for the issue @sjrothfuss. You'll need to add quotes around that version constraint
pip install "bokeh!=3.0.*,>=2.4.2"
Here's a PR to fix that message #8717
Sorry, something went wrong.
Thanks, @jrbourbeau. pip install bokeh==2.4.2 did the trick for me before and your version with quotes works too.
Successfully merging a pull request may close this issue.
On the Client dashboard, the instructions for pip installing
bokeh
don't work for me as written. Am I missing something?Webpage:
Code and output:
Using
pip install bokeh==2.4.2
appears to work fine though.The text was updated successfully, but these errors were encountered: