Skip to content

Install Visual Studio Code

Visual Studio Code is a versatile, user-friendly source code editor that supports extensions for multiple languages, including C#, C++ and python. Follow these steps to install Visual Studio Code on Linux and set up the necessary extensions.

  1. Download Visual Studio Code

    Visit the Visual Studio Code download page and select the .deb package for Ubuntu/Debian systems. This will download the installer to your default Downloads folder.

    Downloading Visual Studio Code for Ubuntu

  2. Open a Terminal

    Open a terminal on your system:

    • Use the application menu to find “Terminal.”
    • Or press Ctrl + Alt + T as a shortcut on most Ubuntu systems.
  3. Navigate to the Download Location

    By default, downloaded files are saved in the ~/Downloads directory. Navigate there using:

    Terminal window
    cd ~/Downloads

    Then run the following command to install Visual Studio Code:

    Terminal window
    sudo dpkg -i code_1.*.deb

    Installing Visual Studio Code on Ubuntu

After setting up Visual Studio Code, enhance your development environment by adding essential extensions for C#, C++, and Python. These extensions provide robust tools for coding, debugging, and code intelligence, making your setup complete for SplashKit projects.

You can install these C# extensions directly from the terminal by running:

Terminal window
code --install-extension ms-dotnettools.csharp
code --install-extension ms-dotnettools.csdevkit
code --install-extension ms-dotnettools.vscodeintellicode-csharp

To install the C++ Extension Pack directly from the terminal:

Terminal window
code --install-extension ms-vscode.cpptools-extension-pack

To install the Python Extension Pack directly from the terminal:

Terminal window
code --install-extension donjayamanne.python-extension-pack

Congratulations! You’ve completed the setup of everything you need to get started with SplashKit. You’re now ready to start developing.