File: development_faq.md

package info (click to toggle)
jupyter-notebook 7.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,116 kB
  • sloc: python: 544; javascript: 410; makefile: 182; sh: 51
file content (17 lines) | stat: -rw-r--r-- 545 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(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
```