Install Language Specific Tools
SplashKit supports multiple programming languages, each with its own set of tools. Follow the steps below to install the necessary tools for your chosen language.
Language-Specific Installations
Section titled “Language-Specific Installations”C# (.NET)
Section titled “C# (.NET)”To develop with C# in SplashKit, you’ll need to install the .NET SDK.
-
Download the .NET SDK
Go to the official .NET SDK download page and download the latest version for Windows.
-
Install the .NET SDK
Run the downloaded installer and follow the on-screen instructions to complete the installation.
-
Verify the Installation
Open your MSYS2 terminal and run the following command to confirm that .NET is installed:
Terminal window dotnet --versionIf installed correctly, this command will output the version number of the .NET SDK.
For C++ development, your MSYS2 setup already includes the necessary tools for SplashKit. No additional setup is required specifically for C++.
Python
Section titled “Python”To develop with Python in SplashKit, follow these steps to install Python on your system.
-
Download the Python Installer
Go to the Python download page and download the latest Python installer for Windows.
-
Run the Installer and Select Optional Features
- During the installation, check the box to Add python.exe to PATH.
- Choose additional features, such as installing
pip
, as needed.
-
Complete the Installation
Follow the on-screen instructions to complete the installation.
-
Verify Installation (Optional)
To confirm that
Python
andpip
are successfully installed, open your MSYS2 terminal and run the following commands:Terminal window python --versionpip --versionBoth commands should output version information if the installation was successful.
Other Languages
Section titled “Other Languages”Support for other languages such as Rust and Pascal are coming soon.