Skip to content

Commit 1a4e35a

Browse files
committed
changed installation instructions to miniforge
1 parent 46ae37d commit 1a4e35a

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

book/introduction/1_Setup/2_Usage.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ kernelspec:
1414

1515
# 1.2 Usage
1616

17-
At this point you should have previously installed Micromamba and Visual Studio Code.
17+
At this point you should have previously installed Miniforge and Visual Studio Code.
1818

1919

2020
## Python environments
2121

22-
Remember that we use Micromamba to have isolated Python environments for our projects. So let's start by creating a **psy111** environment that is able to run all upcoming exercises (as well as create this entire book). Open a a new terminal/PowerShell window and type:
22+
Remember that we use Miniforge to have isolated Python environments for our projects. So let's start by creating a **psy111** environment that is able to run all upcoming exercises (as well as create this entire book). Open a a new terminal/PowerShell window and type:
2323

2424
```
25-
micromamba create -n psy111 python
25+
conda create -n psy111 python
2626
```
2727

2828
and confirm the installation with `y` when prompted to do so. Afterwards, activate the environment by typing
2929

3030
```
31-
micromamba activate psy111
31+
conda activate psy111
3232
```
3333

3434
You should now see a `(psy111)` in the terminal, indicating that you have succesfully activated the new environment.
@@ -45,8 +45,7 @@ to display a list of all installed Python packages. As our environment is still
4545
pip install numpy
4646
```
4747

48-
If you then again type `pip list`, you will see that the list of installed packages now includes the NumPy. There are more things you can do with Micromamba, and if needed, you can refer to the [conda cheatsheet](https://docs.conda.io/projects/conda/en/4.6.0/_downloads/52a95608c49671267e40c689e0bc00ca/conda-cheatsheet.pdf) for more information as the usage is identical (just make sure to use `micromamba` instead of `conda`).
49-
48+
If you then again type `pip list`, you will see that the list of installed packages now includes the NumPy. There are more things you can do with Miniforge, and if needed, you can refer to the [conda cheatsheet](https://docs.conda.io/projects/conda/en/4.6.0/_downloads/52a95608c49671267e40c689e0bc00ca/conda-cheatsheet.pdf) for more information.
5049
---
5150

5251
## The Python interpeter

0 commit comments

Comments
 (0)