Installation Steps - FracktalWorks/Fracktory-5 GitHub Wiki
Installation Steps
-
Install Windows 10 or higher: Ensure you are running Windows 10 or a later version.
-
Install Visual Studio:
- Download and install Visual Studio 2022 or higher from visualstudio.microsoft.com.
- During installation, select the "Desktop development with C++" workload.
- Ensure Visual Studio is added to the system PATH.
-
Install Python:
- Download and install Python 3.12 or higher from python.org.
- Ensure Python is added to the system PATH during installation.
-
Install Python Packages:
- Install
sipversion 6.5.1:pip install sip==6.5.1
-
Install CMake:
- Download and install CMake 3.23 or higher from cmake.org. Make sure to select the appropriate installer for your system (e.g., Windows x64 Installer).
- Ensure CMake is added to the system PATH during installation.
-
Install Ninja:
- Download Ninja 1.10 or higher from ninja-build.org.
- Extract the downloaded zip file to a folder, for example,
C:\Ninja. - Add the Ninja folder to the system PATH:
- Open the Start Menu, search for "Environment Variables", and select "Edit the system environment variables".
- In the System Properties window, click on the "Environment Variables" button.
- In the Environment Variables window, find the "Path" variable in the "System variables" section and select it. Click "Edit".
- In the Edit Environment Variable window, click "New" and add the path to the Ninja folder, e.g.,
C:\Ninja. - Click "OK" to close all windows.
- Install
-
Install Conan:
For 5.9 and earlier:
- Install Conan version >=2.7.0 <3.0.0:
pip install "conan>=1.58.0,<2.0.0"
For 5.10 and later:
- Install Conan version >=2.7.0 <3.0.0:
pip install "conan>=2.7.0,<3.0.0"
Ensure all installed programs are available in the system PATH. You can verify this by running the following commands in a command prompt:
python --version
pip show sip
cmake --version
ninja --version
conan --version
If any program is not available in the PATH, follow these steps to add it:
- Open the Start Menu, search for "Environment Variables", and select "Edit the system environment variables".
- In the System Properties window, click on the "Environment Variables" button.
- In the Environment Variables window, find the "Path" variable in the "System variables" section and select it. Click "Edit".
- In the Edit Environment Variable window, click "New" and add the path to the directory where the program is installed. For example:
- For Python:
C:\Python39 - For CMake:
C:\Program Files\CMake\bin - For Ninja:
C:\Program Files\Ninja
- For Python:
- Click "OK" to close all windows.
- It may need you to restart the machine after a new installation for the program to show up in your PATH