You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 26, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,16 @@ A python project template for educational purposes
14
14
`pip install -e .`
15
15
16
16
## Python venv
17
-
venv stands for virtual environment and is part of the python standard library (i.e. you don't have to install it).
17
+
**venv** stands for virtual environment and is part of the python standard library (i.e. you don't have to install it).
18
+
Python virtual environments' role is to create an isolated python environment for each project so that there are no dependency issues etc. from conflicting project requirements (e.g. Project A need pandas 1.0 and Project B needs pandas 1.1).
19
+
18
20
The command `python -m venv .venv` creates a directory call .venv.
19
21
You can activate the virtual environment with `source .venv/bin/activate`.
20
22
23
+
To enable the new venv in jupyter notebooks follow the instructions here:
0 commit comments