@@ -48,14 +48,13 @@ Installing the Jupyter Notebook
48
48
Once you have installed the dependencies mentioned above, use the following
49
49
steps::
50
50
51
- pip install setuptools pip --upgrade --user
51
+ pip install --upgrade setuptools pip
52
52
git clone https://github.com/jupyter/notebook
53
53
cd notebook
54
- pip install -e . --user
54
+ pip install -e .
55
55
56
- If you want the development environment to be available for all users of your
57
- system (assuming you have the necessary rights) or if you are installing in a
58
- virtual environment, just drop the ``--user `` option.
56
+ If you are using a system-wide Python installation and you only want to install the notebook for you,
57
+ you can add ``--user `` to the install commands.
59
58
60
59
Once you have done this, you can launch the master branch of Jupyter notebook
61
60
from any directory in your system with::
@@ -106,7 +105,7 @@ Python Tests
106
105
107
106
Install dependencies::
108
107
109
- pip install -e .[test] --user
108
+ pip install -e .[test]
110
109
111
110
To run the Python tests, use::
112
111
@@ -155,10 +154,9 @@ containing all the necessary packages (except pandoc), use::
155
154
.. _conda environment :
156
155
http://conda.pydata.org/docs/using/envs.html#use-environment-from-file
157
156
158
- If you want to install the necessary packages with ``pip `` instead, use
159
- (omitting --user if working in a virtual environment)::
157
+ If you want to install the necessary packages with ``pip `` instead::
160
158
161
- pip install -r docs/doc-requirements.txt --user
159
+ pip install -r docs/doc-requirements.txt
162
160
163
161
Once you have installed the required packages, you can build the docs with::
164
162
0 commit comments