@@ -17,11 +17,14 @@ What versions of Python (or R or Julia...) are supported?
1717Python
1818~~~~~~
1919
20- Repo2docker officially supports the following versions of Python (specified in environment.yml or runtime.txt):
20+ Repo2docker officially supports the following versions of Python
21+ (specified in your :ref: `environment.yml <environment.yml >` or
22+ :ref: `runtime.txt <runtime.txt >` file):
2123
2224- 3.7 (added in 0.7)
2325- 3.6 (default)
2426- 3.5
27+ - 2.7
2528
2629Additional versions may work, as long as the
2730`base environment <https://github.com/jupyter/repo2docker/blob/master/repo2docker/buildpacks/conda/environment.yml >`_
@@ -31,14 +34,15 @@ in the base environment is not packaged for your Python,
3134either because the version of the package is too new and your chosen Python is too old,
3235or vice versa.
3336
34- Additionally, if Python 2.7 is specified,
35- a separate environment for the kernel will be installed with Python 2.
36- The notebook server will run in the default Python 3.6 environment.
37+ I Python 2.7 is specified, a separate environment for the kernel will be
38+ installed with Python 2. The notebook server will run in the default Python 3.6
39+ environment.
3740
3841Julia
3942~~~~~
4043
41- The following versions of Julia are supported (specified in REQUIRE):
44+ The following versions of Julia are supported (specified in the
45+ :ref: `REQUIRE <REQUIRE >` configuration file):
4246
4347- 1.0 (added in 0.7)
4448- 0.7 (added in 0.7)
@@ -61,7 +65,11 @@ a subsequent build step.)
6165How do I set environment variables?
6266-----------------------------------
6367
64- Use the ``-e `` or ``--env `` flag for each variable that you want to define.
68+ To configure environment variables for all users of a repository use the
69+ :ref: `start <start >` configuration file.
70+
71+ When running repo2docker locally you can use the ``-e `` or ``--env `` command-line
72+ flag for each variable that you want to define.
6573
6674For example ``jupyter-repo2docker -e VAR1=val1 -e VAR2=val2 ... ``
6775
0 commit comments