We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 682fe96 commit 003aaa7Copy full SHA for 003aaa7
.screenshot/context-menu.png
-14 Bytes
README.md
@@ -35,18 +35,21 @@ venv/Scripts/Activate.ps1
35
36
# install pip prereqs
37
py -m pip install -r .\requirements.txt --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org
38
+
39
+# list pip installs inside the venv
40
+pip freeze
41
```
42
43
### Compile
44
```ps
45
# compile manually
-pyinstaller "src/awake.spec" --noconfirm
46
+pyinstaller 'src/awake.spec' --noconfirm
47
48
package with nsis manually
-makensis installer/awake.nsi
49
+makensis 'installer/awake.nsi'
50
51
# run both automatically
-py "tools/make.py"
52
+py 'tools/make.py'
53
54
55
## Further Reading
0 commit comments