Skip to content

Commit 6400abd

Browse files
authored
Update practical4.qmd
1 parent d8745f1 commit 6400abd

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

dependencies/practical4.qmd

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ title: "Practical 4: Installing and using Conda with Miniforge, and writing some
1313
You can follow the [instructions here](https://github.com/conda-forge/miniforge):
1414

1515
```bash
16-
wget "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
16+
wget -O Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
1717

18-
bash Miniforge3-$(uname)-$(uname -m).sh
18+
bash Miniforge3.sh -b -p "${HOME}/conda"
19+
20+
source "${HOME}/conda/etc/profile.d/conda.sh"
1921
```
2022

2123
Now try a `git status`: we *don't* want the Conda installer saved in our repo, so let's create a `.gitignore` file (if we weren't using this cloud machine we would put this installer somewhere else):
@@ -349,4 +351,4 @@ Extension like autoDocstring help you to write better and more consistent docume
349351

350352
## Further reading
351353

352-
- [How to Manage Python Projects With pyproject.toml](https://realpython.com/python-pyproject-toml/)
354+
- [How to Manage Python Projects With pyproject.toml](https://realpython.com/python-pyproject-toml/)

0 commit comments

Comments
 (0)