Update build instructions to resolve some errors that popped up

This commit is contained in:
Fierelier 2021-10-11 20:41:11 +00:00
parent 920cdae911
commit 3824b3cc07
1 changed files with 6 additions and 4 deletions

View File

@ -32,15 +32,17 @@ set path=%cd%\python34;%path%
4. enter "python.exe --version" if it does not output Python 3.4.4, you should close cmd, open cmd, and retry step 3.
it's important you make sure this is correct.
5. install the following prerequisites:
pip: python.exe -c "import ensurepip;ensurepip.bootstrap()"
5. download get-pip for python 3.4 to get the most up-to-date pip: https://bootstrap.pypa.io/pip/3.4/get-pip.py -- run it with: python.exe get-pip.py
6. install the following prerequisites:
pefile 2019.4.18: python.exe -m pip install "pefile==2019.4.18"
pyinstaller 3.4: python.exe -m pip install "PyInstaller==3.4"
colorama 0.3.5: python.exe -m pip install "colorama==0.3.5"
6. compile by entering this command:
8. compile by entering this command:
python.exe -m PyInstaller fspecs.py --onefile
7. you can find the EXEs in dist\
9. you can find the EXEs in dist\
```
<br>