This repository has been archived on 2024-06-15. You can view files and clone it, but cannot push or open issues or pull requests.
Launcher/install-windows.txt

18 lines
615 B
Text
Raw Normal View History

2024-01-09 20:33:27 +00:00
# install msys2
https://www.msys2.org/
2024-01-09 20:33:27 +00:00
# update msys2
pacman -Suy
2024-01-09 20:33:27 +00:00
# install python && pip in msys2
pacman -S mingw-w64-x86_64-gcc mingw-w64-x86_64-python3 mingw-w64-x86_64-python3-pip mingw-w64-x86_64-python3-setuptools
2024-01-09 20:33:27 +00:00
# install packages from requirements.txt (in msys2 mingw64)
pip install -r requirements.txt
2024-01-09 20:33:27 +00:00
# if it does not work by pip, install python-pillow in msys2
pacman -S mingw-w64-x86_64-python-pillow
2024-01-09 20:33:27 +00:00
# add python (default: C:\msys2\mingw64\bin) to system variable PATH
2024-01-09 20:33:27 +00:00
# restart computer to refresh system variables, and if done well you should be able to build and run this app