Linux Setup Instructions
.NET 8 installation¶
Ubuntu 22.04¶
wget [https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb](https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb) -O packages-microsoft-prod.deb
&& dpkg -i packages-microsoft-prod.deb
&& rm packages-microsoft-prod.deb
&& apt update
&& apt install -y dotnet-sdk-8.0
Path¶
To include the .NET tools in your system’s PATH, add the following line to your shell initialization file:
export PATH="$PATH:$HOME/.dotnet/tools/"
Afterward, refresh your shell to apply the changes. You can do this by restarting the shell or using a command like source ~/.bashrc
(or the relevant command for your specific shell).
SQLiteStudio¶
Install like so
wget https://github.com/pawelsalawa/sqlitestudio/releases/download/3.4.4/SQLiteStudio-3.4.4-linux-x64-installer.run
chmod +x ./SQLiteStudio-3.4.4-linux-x64-installer.run
./SQLiteStudio-3.4.4-linux-x64-installer.run
sudo apt-get install '^libxcb.*-dev' libx11-xcb-dev libglu1-mesa-dev libxrender-dev libxi-dev libxkbcommon-dev libxkbcommon-x11-dev
# Start with
~/SQLiteStudio/sqlitestudio
VS code¶
If you’re using VS Code, install the C# extension
Last update :
November 17, 2023
Created : November 17, 2023
Created : November 17, 2023