Skip to content

Commit 3cba084

Browse files
authored
Merge pull request #1061 from romainx/recipes_fix
[DOC] #1060 Fix conda command to create env
2 parents ac657b7 + 2ebcdc5 commit 3cba084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/using/recipes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ ARG conda_env=python36
112112
ARG py_ver=3.6
113113
114114
# you can add additional libraries you want conda to install by listing them below the first line and ending with "&& \"
115-
RUN conda env create --quiet --yes -p $CONDA_DIR/envs/$conda_env python=$py_ver ipython ipykernel && \
115+
RUN conda create --quiet --yes -p $CONDA_DIR/envs/$conda_env python=$py_ver ipython ipykernel && \
116116
conda clean --all -f -y
117117
118118
# alternatively, you can comment out the lines above and uncomment those below

0 commit comments

Comments
 (0)