Skip to content

Commit 6cdd81b

Browse files
authored
Merge pull request #583 from haraldschilly/patch-1
install: one-liner to install most recent upstream code
2 parents 8deda05 + 349f801 commit 6cdd81b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

docs/source/install.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,21 @@ We recommend installing ``repo2docker`` with the ``pip`` tool::
2929

3030
python3 -m pip install jupyter-repo2docker
3131

32+
for the latest release. To install the most recent code from the upstream repository, run::
33+
34+
python3 -m pip install https://github.com/jupyter/repo2docker/archive/master.zip
35+
3236
For information on using ``repo2docker``, see :ref:`usage`.
3337

3438
Installing from source code
3539
---------------------------
3640

37-
Alternatively, you can install repo2docker from source,
38-
i.e. if you are contributing back to this project::
41+
Alternatively, you can install repo2docker from a local source tree,
42+
e.g. in case you are contributing back to this project::
3943

4044
git clone https://github.com/jupyter/repo2docker.git
4145
cd repo2docker
42-
pip install -e .
46+
python3 -m pip install -e .
4347

4448
That's it! For information on using ``repo2docker``, see
4549
:ref:`usage`.

0 commit comments

Comments
 (0)