File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -89,3 +89,26 @@ Due to how new this project is, there are no binaries currently.
89
89
```commandline
90
90
. .. assets default_circuitpython_hierarchy .git .gitignore gui.py gui_tools main.py project_tools README.md requirements.txt
91
91
```
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
+ ```
You can’t perform that action at this time.
0 commit comments