Merge pull request #583 from haraldschilly/patch-1

install: one-liner to install most recent upstream code
pull/585/head
Tim Head 2019-02-20 16:26:18 +01:00 zatwierdzone przez GitHub
commit 6cdd81ba7f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 7 dodań i 3 usunięć

Wyświetl plik

@ -29,17 +29,21 @@ We recommend installing ``repo2docker`` with the ``pip`` tool::
python3 -m pip install jupyter-repo2docker
for the latest release. To install the most recent code from the upstream repository, run::
python3 -m pip install https://github.com/jupyter/repo2docker/archive/master.zip
For information on using ``repo2docker``, see :ref:`usage`.
Installing from source code
---------------------------
Alternatively, you can install repo2docker from source,
i.e. if you are contributing back to this project::
Alternatively, you can install repo2docker from a local source tree,
e.g. in case you are contributing back to this project::
git clone https://github.com/jupyter/repo2docker.git
cd repo2docker
pip install -e .
python3 -m pip install -e .
That's it! For information on using ``repo2docker``, see
:ref:`usage`.