Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

[fix] two small mistakes #1

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/01_hello_world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ git clone https://github.com/coding-for-reproducible-research/parallel-computing
and navigate to the `python` directory of the repo. We can create a python virtual environment and activate it with the commands:
```
python -m venv .venv
source ./venv/bin/activate
source ./.venv/bin/activate
```
Once this is done we can install our (small) list of python dependencies, stored in the `requirements.txt` file:
```
python -m pip install requirements.txt
python -m pip install -r requirements.txt
```

## MPI Hello world
Expand Down