Skip to content

Commit c165278

Browse files
authored
Merge pull request #669 from jupyter/install-copy
Simplify copy on Install page
2 parents 01e4e30 + 4c0eae1 commit c165278

File tree

1 file changed

+11
-68
lines changed

1 file changed

+11
-68
lines changed

install.md

Lines changed: 11 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,103 +1,46 @@
11
---
22
layout: page
33
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
55
permalink: /install
66
---
77

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.
99

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/).
1111

12-
### Installation with mamba or conda
12+
## JupyterLab
1313

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`:
3115

3216
```bash
3317
pip install jupyterlab
3418
```
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/).
4120
4221
Once installed, launch JupyterLab with:
4322

4423
```bash
4524
jupyter-lab
4625
```
4726

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
5728

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:
6730

6831
```bash
6932
pip install notebook
7033
```
7134

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:
7336

7437
```bash
7538
jupyter notebook
7639
```
7740

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à
9942

100-
If you use `pip`, you can install it with:
43+
Install Voilà with:
10144

10245
```bash
10346
pip install voila

0 commit comments

Comments
 (0)