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
The pip install notebook will install the v7 version by default. How can I install the v6 version?
pip install notebook
The text was updated successfully, but these errors were encountered:
pip install https://github.com/jupyter/notebook/releases/download/v6.4.11/notebook-6.4.11-py3-none-any.whl
Sorry, something went wrong.
pip install notebook==6, see example 1 by the link for examples of different version specifiers https://pip.pypa.io/en/stable/cli/pip_install/#examples
pip install notebook==6
python -m pip install SomePackage # latest version python -m pip install 'SomePackage==1.0.4' # specific version python -m pip install 'SomePackage>=1.0.4' # minimum version
No branches or pull requests
Problem
The
pip install notebook
will install the v7 version by default. How can I install the v6 version?The text was updated successfully, but these errors were encountered: