Skip to content

Commit 891f441

Browse files
committed
NOISSUE: adding developer readme file
1 parent 2e19619 commit 891f441

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

dev.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
From Python's website https://www.python.org/downloads/ download 3.12
2+
3+
Ensure all installation tools are up to date
4+
```
5+
python3.12 -m pip install --upgrade pip setuptools wheel
6+
```
7+
8+
Create virtual environment
9+
```
10+
python3.12 -m venv .env
11+
```
12+
13+
Activate the new virtual environment
14+
```
15+
source .env/bin/activate
16+
```
17+
18+
Install project packages
19+
```
20+
pip install -r requirements.txt
21+
```

0 commit comments

Comments
 (0)