Run from source code
Running Artemis directly from the source code using the Python interpreter is considered the most reliable and least problematic method. This approach ensures maximum compatibility and reduces the likelihood of encountering runtime issues. However, it is also the less practical option, as it requires the use of the terminal for the execution.
Requirements
- Python (3.11 or higher)
Procedure
-
Download and install Python (3.11 or higher) from the official website. Be sure to select the flag
Add Python 3.x to PATHduring the first part of the installation. -
Download Artemis source code from the latest release in the GitHub repository.
-
Extract the downloaded archive.
-
Open the terminal in Artemis folder and install the required Python libraries with PIP:
pip install -r requirements.txt --user -
Launch Artemis:
python app.py
Note for Developers
Whenever modifications are made to any .qml file or any assets (such as images, icons, etc.), it is essential to recompile the resource.py file to ensure that the changes are reflected in the application. To achieve this, execute the following command:
pyside6-rcc ./artemis.qrc -o artemis/resources.py