- Releases
- Pre-release
- ⬇️ (GUI SETUP) - v0.0.7.7 - 24.12.2023
- ⬇️ (GUI PORTABLE) - v0.0.7.5 - 16.12.2023
- ⬇️ (GUI SETUP) - v0.0.7.5 - 16.12.2023
- ⬇️ (CLI) - v0.0.7.5 - 16.12.2023
- Pre-release
- Releases
- Pre-release
- ⬇️ v0.0.7.7 - 23.01.2024
- Pre-release
-
- For the C++ compiler go to https://www.msys2.org/docs/installer/
- After following the necessary steps, install the following libraries
- https://packages.msys2.org/package/mingw-w64-x86_64-pugixml?repo=mingw64
pacman -S mingw-w64-x86_64-pugixml
- https://packages.msys2.org/package/mingw-w64-x86_64-pugixml?repo=mingw64
-
- For the Python interpreter, go to https://www.python.org/downloads/release/python-3913/
- Once installed, open the terminal in the directory where the project is located.
- Type the command
pip install .\requirements.txt
to install the libraries in therequirements.txt
file.
-
- Open the project folder with terminal.
- Type
mingw32-make
to execute the commands written in theMakefile
file in the project. - If a successful build process is completed, the message
Build process is completed.
will appear. - When the compilation process is successful, you can run the project by typing
python main.py
in the same file path.
-
- C++ derleyicisi için bu adrese gidin https://www.msys2.org/docs/installer/
- Gerekli adımları uyguladıktan sonra aşağıdaki kütüphaneleri kurun
- https://packages.msys2.org/package/mingw-w64-x86_64-pugixml?repo=mingw64
pacman -S mingw-w64-x86_64-pugixml
- https://packages.msys2.org/package/mingw-w64-x86_64-pugixml?repo=mingw64
-
- Python yorumlayıcısı için şu adrese gidin https://www.python.org/downloads/release/python-3913/
- Kurulduktan sonra projenin bulunduğu dizinde terminali açın.
requirements.txt
dosyasındaki kütüphaneleri kurmak içinpip install .\requirements.txt
komutunu yazın.
-
- Proje klasörünü terminal ile açın.
- Projedeki
Makefile
dosyasında yazan komutları yerine getirmek içinmingw32-make
yazın. - Başarılı bir derleme işlemi gerçekleşirse
Build process is completed.
yazısı çıkacak. - Derleme işlemi başarılı olduğunda yine aynı dosya yolunda
python main.py
yazarak projeyi çalıştırabilirsiniz.