File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ The final demo can be seen [here](https://www.youtube.com/watch?v=IJV11OGTNT8) a
40
40
* Install Anaconda (https://www.anaconda.com/download/ ) or Miniconda (https://conda.io/miniconda.html ) to save hard drive space
41
41
* Start an Anaconda Prompt. (Search Anaconda in the start menu.)
42
42
#### 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
44
44
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
47
47
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
49
49
* Then activate the environment
50
50
51
51
$ activate cv
@@ -59,6 +59,9 @@ The final demo can be seen [here](https://www.youtube.com/watch?v=IJV11OGTNT8) a
59
59
* Using the environment.yml file provided, run
60
60
61
61
$ 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
62
65
* Activate the environment
63
66
64
67
$ activate cv
You can’t perform that action at this time.
0 commit comments