Skip to content

Commit 5e8eaec

Browse files
authored
Merge pull request #101 from bmcandr/fix/setup-mkdir-data
Add step to create `data` subdirectory in lesson setup
2 parents b0b377d + 7558f58 commit 5e8eaec

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

setup.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,14 @@ title: Setup
2222
cd geospatial-python
2323
```
2424

25-
4. Download the data that will be used in this lesson. There are two ways you can do this:
25+
4. Create a subdirectory within `geospatial-python` called `data` and change into it:
26+
27+
```bash
28+
mkdir data
29+
cd data
30+
```
31+
32+
5. Download the data that will be used in this lesson. There are two ways you can do this:
2633

2734
* **Web browser:** [**Click here**](https://figshare.com/ndownloader/files/33848834) to download the zip file. When it finishes, move the zip file into the `geospatial-python` directory we created above and unzip the file.
2835
* **Terminal:**
@@ -36,8 +43,14 @@ title: Setup
3643
```bash
3744
unzip NEON-GEO-PYTHON-DATASETS.zip
3845
```
46+
3947
You should now have a directory named `data` within `geospatial-python`. Use the `ls` command to confirm.
4048

49+
6. Change directories from `data` back into `geospatial-python`:
50+
51+
```bash
52+
cd ..
53+
```
4154

4255
## Installing Python Using Anaconda
4356

0 commit comments

Comments
 (0)