Skip to content

Commit 4e3cbed

Browse files
authored
Update README.md
1 parent 185b96b commit 4e3cbed

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ The final demo can be seen [here](https://www.youtube.com/watch?v=IJV11OGTNT8) a
4040
* Install Anaconda (https://www.anaconda.com/download/) or Miniconda (https://conda.io/miniconda.html) to save hard drive space
4141
* Start an Anaconda Prompt. (Search Anaconda in the start menu.)
4242
#### Option 1: Exact source package installs
43-
* Using the spec-file.txt provided install identical packages and run
43+
* Use the spec-file.txt provided, install identical packages
4444

45-
$ conda create --name [ENV_NAME] --file spec-file.txt # create new env with same packages
46-
or
45+
$ conda create -n [ENV_NAME] --file spec-file.txt # create new env with same packages
46+
or, if you have an existing environment
4747

48-
$ conda install --name [ENV_NAME] --file spec-file.txt # install packages into an existing env
48+
$ conda install -n [ENV_NAME] --file spec-file.txt # install packages into an existing env
4949
* Then activate the environment
5050

5151
$ activate cv
@@ -59,6 +59,9 @@ The final demo can be seen [here](https://www.youtube.com/watch?v=IJV11OGTNT8) a
5959
* Using the environment.yml file provided, run
6060

6161
$ conda create -n cv --file environment.yml
62+
or, if you have an existing environment
63+
64+
$ conda install -n [ENV_NAME] --file spec-file.txt # install packages into an existing env
6265
* Activate the environment
6366

6467
$ activate cv

0 commit comments

Comments
 (0)