Install Language Specific Tools
SplashKit supports multiple programming languages, each with its own set of tools. Follow the instructions below to install the required tools for your chosen language on Windows Subsystem for Linux (WSL).
Language-Specific Installations
C# (.NET)
To develop with C# in SplashKit, you’ll need to install the .NET SDK.
-
Visit the .NET Download Page
Go to the .NET download page for Linux and select the instructions for your Ubuntu distribution.
-
Follow the Installation Instructions
Follow the on-screen instructions provided by the .NET website to complete the installation on your WSL environment.
-
Verify Installation (Optional)
Open your WSL terminal and run the following command to confirm the .NET SDK is installed:
If installed correctly, this command will output the version number of the .NET SDK.
C++
For C++ development, your WSL setup should already include the necessary tools for SplashKit. No additional setup is required specifically for C++.
Python
To develop with Python in SplashKit, follow these steps to install Python and pip
on your WSL environment.
-
Install Python 3
In your WSL terminal, run the following command to install Python 3:
-
(Optional) Install pip
If you need the Python package manager,
pip
, run: -
Verify Installation (Optional)
To check that Python and
pip
are installed, run the following commands:Both commands should output version information if the installation was successful.
Other Languages
Support for other languages such as Rust and Pascal are coming soon.
Next Steps
Congratulations! You’ve completed the setup of language-specific tools for SplashKit. You’re now ready to start developing.
Ready to start coding?