Skip to content

Commit 352b7b2

Browse files
committed
README install order update
1 parent c8dcf8f commit 352b7b2

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,23 @@ FAD-Toolset is built entirely in Python. It is recommended that users familiariz
4646

4747
The following describes the steps to set up a python virtual environment and install FAD-Toolset and all required dependencies into the environment.
4848

49-
Using conda, and a terminal such as the Anaconda Powershell Prompt, create a new python virtual environment with an environment name of your choice. We will use 'fad-env' as an example.
49+
First, a terminal such as the Anaconda Powershell Prompt, clone the GitHub repository to access the files. Navigate to a directory of your choice to download the repository and then navigate into the FAD-Toolset folder.
5050

5151
```
52-
(base) ANY_PATH> conda env create -n fad-env -f famodel-env.yaml
53-
(base) ANY_PATH> conda activate fad-env # run `conda deactivate` to deactivate
54-
(fad-env) ANY_PATH>
52+
(base) YOUR_PATH> git clone https://github.com/FloatingArrayDesign/FAD-Toolset.git
53+
(base) YOUR_PATH> cd FAD-Toolset
5554
```
56-
57-
Within the new python virtual environment, we can install FAD-Toolset. First, we need to clone the GitHub repository to access the files. Navigate to a directory of your choice to download the repository and then navigate into the FAD-Toolset folder.
55+
Next, create a new python virtual environment with an environment name of your choice. We will use 'fad-env' as an example.
5856

5957
```
60-
(fad-env) YOUR_PATH> git clone https://github.com/FloatingArrayDesign/FAD-Toolset.git
61-
(fad-env) YOUR_PATH> cd FAD-Toolset
58+
(base) YOUR_PATH\FAD-Toolset> conda env create -n fad-env -f famodel-env.yaml
59+
(base) YOUR_PATH\FAD-Toolset> conda activate fad-env # run `conda deactivate` to deactivate
60+
(fad-env) YOUR_PATH\FAD-Toolset>
6261
```
6362

64-
Then, use ```pip``` to install the contents of this folder.
63+
Within the new python virtual environment, we can install FAD-Toolset.
64+
65+
Use ```pip``` to install the contents of this folder. Ensure you are still within the FAD-Toolset main folder.
6566

6667
```
6768
(fad-env) YOUR_PATH\FAD-Toolset> pip install -e .

0 commit comments

Comments
 (0)