Skip to content

Commit d0bb75d

Browse files
Add steps 6 & 7 in installing from source
1 parent 891eb51 commit d0bb75d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,26 @@ Due to how new this project is, there are no binaries currently.
8989
```commandline
9090
. .. assets default_circuitpython_hierarchy .git .gitignore gui.py gui_tools main.py project_tools README.md requirements.txt
9191
```
92+
93+
6. If you are going to use a [virtual environment](https://docs.python.org/3/library/venv.html), run the following
94+
commands:
95+
1. Windows:
96+
```commandline
97+
python -m venv .venv
98+
".venv/Scripts/activate.bat"
99+
```
100+
2. macOS and Linux:
101+
```commandline
102+
python3 -m venv .venv
103+
source .venv/bin/activate
104+
```
105+
106+
7. Install the packages:
107+
1. Windows:
108+
```commandline
109+
pip install -r requirements.txt
110+
```
111+
2. macOS and Linux:
112+
```commandline
113+
pip3 install -r requirements.txt
114+
```

0 commit comments

Comments
 (0)