Skip to content

Commit

Permalink
Update README_dev.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jellepoland authored Oct 8, 2024
1 parent 2cce0d5 commit 92b6318
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions README_dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,22 @@ Hi! Welcome to this Python Template, this `README_dev.md` contains instructions
python -m venv venv
```
11. Activate the virtual environment; this should result in a (venv) in your terminal, indicating the virtual environment is active. Tip: for proper dependency management, one should **always activate the venv before coding**.
```bash
source venv/bin/activate
```
# Linux / macOS
```bash
source venv/bin/activate
```

# Windows (Command Prompt)
```bash
venv\Scripts\activate
```

# Windows (PowerShell)
```bash
.\venv\Scripts\Activate
```


12. Open this folder with your favorite code editor (IDE, for example VSCode) and start coding!
13. Once you are finished you can deactivate the venv
```bash
Expand Down

0 comments on commit 92b6318

Please sign in to comment.