Introduction
Thereâs 3 ways you can install packages to linux.
The GUI install, the manual install and the git install.
The GUI install has the benefit that you get update notifications and itâs faster to update later on.
Git is also very convenient but mainly focused on developers.
Manual is a bit annoying to update but itâs useful to know how to do it to fix some issues sometimes.
GUI install
This is by far the most convenient way for regular users and itâs fairly easy.
First open Simba.
Then click on the package đŚ icon:
In the window that opens up, click the plus icon in the top left corner.
Paste the link of the package you want to install⌠For example: https://github.com/Torwent/wasp-free
Click Ok and then click Install
And thatâs it⌠Youâve installed a package.
You will notice now that sometimes, the package đŚ icon will have a green plus icon like so:
That means that one of the packages you installed via the GUI has updates available.
To update, go to the package manager, open the package you want to update and click install again.
Git installation
This assumes you already have git installed.
Go to the repository you want to install and open itâs .simbapackage file for example, my wasp-free package: https://github.com/Torwent/wasp-free/blob/master/.simbapackage
Take note of the directory=
because thatâs where you need to clone the package to.
Go to that Simba directory, in this case, Simba/Scripts
and open the command line there.
Then simply clone the repo:
git clone https://github.com/Torwent/wasp-free.git
And thatâs it.
To update it just pull the changes while you are in the directory:
cd Simba/Scripts/wasp-free
git pull
Manual installation
For manual installation you only need to download the package you want, letâs use one of mine as an example: https://github.com/Torwent/wasp-free
If the package has a release, you can also use that instead, chances are it might be more stable than downloading the rolling release master-branch:
Once you have the zip downloaded, unzip it:
Make sure the files are right inside the unzipped folder, some unzipping tools will create something like:
wasp-free-master/wasp-free-master/files...
So if this is your case, make it so itâs:
wasp-free-master/files ...
Anyway, then rename the to match itâs intended name and move it to itâs destination. If you donât know what itâs name is intended to be or itâs detination you can find it in the .simbapackage
file:
So in this case, we are going to rename this folder to wasp-free
and move it to Simba/Scripts
.
And thatâs it. Youâve manually installed a package! To update it you need to redo the whole process which is a bit annoying.