You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
545 B
18 lines
545 B
(development-faq)=
|
|
|
|
# Developer FAQ
|
|
|
|
1. How do I install a prerelease version such as a beta or release candidate?
|
|
|
|
You can install a prerelease version of the notebook using the `--pre` flag with `pip`:
|
|
|
|
```bash
|
|
python -m pip install notebook --pre --upgrade
|
|
```
|
|
|
|
If you are using `conda` or `mamba`, you can install a prerelease version of the notebook using the alpha or beta label. For example, to install the latest alpha release, you can run:
|
|
|
|
```bash
|
|
conda install -c conda-forge -c conda-forge/label/notebook_alpha notebook=7.0.0a18
|
|
```
|