|
1 | 1 | ---
|
2 | 2 | layout: page
|
3 | 3 | title: Installing Jupyter
|
4 |
| -tagline: Get up and running with JupyterLab or the classic Jupyter Notebook. |
| 4 | +tagline: Get up and running on your computer |
5 | 5 | permalink: /install
|
6 | 6 | ---
|
7 | 7 |
|
8 |
| -## Getting started with JupyterLab |
| 8 | +Project Jupyter's tools are available for installation via the [Python Package Index](https://pypi.org/), the leading repository of software created for the Python programming language. |
9 | 9 |
|
10 |
| -_The [installation guide](http://jupyterlab.readthedocs.io/en/stable/getting_started/installation.html) contains more detailed instructions_ |
| 10 | +This page uses instructions with [pip](https://pip.pypa.io/en/stable/), [the recommended installation tool for Python](https://packaging.python.org/en/latest/guides/tool-recommendations/#installation-tool-recommendations). If you require _environment management_ as opposed to just installation, look into [conda](https://docs.conda.io/), [mamba](https://mamba.readthedocs.io/), and [pipenv](https://pipenv.pypa.io/). |
11 | 11 |
|
12 |
| -### Installation with mamba or conda |
| 12 | +## JupyterLab |
13 | 13 |
|
14 |
| -JupyterLab can be installed with `mamba` and `conda`: |
15 |
| - |
16 |
| -```bash |
17 |
| -mamba install -c conda-forge jupyterlab |
18 |
| -``` |
19 |
| - |
20 |
| -or |
21 |
| - |
22 |
| -```bash |
23 |
| -conda install -c conda-forge jupyterlab |
24 |
| -``` |
25 |
| - |
26 |
| -Note: If you have not installed mamba or conda yet, you can get started with the [miniforge](https://github.com/conda-forge/miniforge#mambaforge) distribution. |
27 |
| - |
28 |
| -### Installation with pip |
29 |
| - |
30 |
| -If you use `pip`, you can install it with: |
| 14 | +Install JupyterLab with `pip`: |
31 | 15 |
|
32 | 16 | ```bash
|
33 | 17 | pip install jupyterlab
|
34 | 18 | ```
|
35 |
| - |
36 |
| -If you are using a system such as macOS that includes both Python 2 and Python 3, run `pip3` instead of `pip`. |
37 |
| - |
38 |
| -If installing using `pip install --user`, you must add the user-level `bin` directory to your `PATH` environment variable in order to launch `jupyter lab`. If you are using a Unix derivative (e.g., FreeBSD, GNU/Linux, macOS), you can do this by running ``export PATH="$HOME/.local/bin:$PATH"``. |
39 |
| - |
40 |
| -### Run JupyterLab |
| 19 | +> **note**: If you install JupyterLab with conda or mamba, we recommend using [the conda-forge channel](https://conda-forge.org/). |
41 | 20 |
|
42 | 21 | Once installed, launch JupyterLab with:
|
43 | 22 |
|
44 | 23 | ```bash
|
45 | 24 | jupyter-lab
|
46 | 25 | ```
|
47 | 26 |
|
48 |
| -## Getting started with the classic Jupyter Notebook |
49 |
| - |
50 |
| -### Installation with mamba or conda |
51 |
| - |
52 |
| -The classic notebook can be installed with `mamba` and `conda`: |
53 |
| - |
54 |
| -```bash |
55 |
| -mamba install -c conda-forge notebook |
56 |
| -``` |
| 27 | +## Jupyter Notebook |
57 | 28 |
|
58 |
| -or |
59 |
| - |
60 |
| -```bash |
61 |
| -conda install -c conda-forge notebook |
62 |
| -``` |
63 |
| - |
64 |
| -### Installation with pip |
65 |
| - |
66 |
| -If you use `pip`, you can install it with: |
| 29 | +Install the classic Jupyter Notebook with: |
67 | 30 |
|
68 | 31 | ```bash
|
69 | 32 | pip install notebook
|
70 | 33 | ```
|
71 | 34 |
|
72 |
| -Congratulations, you have installed Jupyter Notebook! To run the notebook, run the following command at the Terminal (Mac/Linux) or Command Prompt (Windows): |
| 35 | +To run the notebook: |
73 | 36 |
|
74 | 37 | ```bash
|
75 | 38 | jupyter notebook
|
76 | 39 | ```
|
77 | 40 |
|
78 |
| -See [Running the Notebook](https://jupyter.readthedocs.io/en/latest/running.html#running) for more details. |
79 |
| - |
80 |
| -## Getting started with Voilà |
81 |
| - |
82 |
| -### Installation with mamba or conda |
83 |
| - |
84 |
| -If you use `mamba` or `conda`, you can install it with: |
85 |
| - |
86 |
| -```bash |
87 |
| -mamba install -c conda-forge voila |
88 |
| -``` |
89 |
| - |
90 |
| -or |
91 |
| - |
92 |
| -```bash |
93 |
| -conda install -c conda-forge voila |
94 |
| -``` |
95 |
| - |
96 |
| -For more detailed instructions, consult the [installation guide](https://voila.readthedocs.io/en/stable/install.html). |
97 |
| - |
98 |
| -### Installation with pip |
| 41 | +## Voilà |
99 | 42 |
|
100 |
| -If you use `pip`, you can install it with: |
| 43 | +Install Voilà with: |
101 | 44 |
|
102 | 45 | ```bash
|
103 | 46 | pip install voila
|
|
0 commit comments