-
Notifications
You must be signed in to change notification settings - Fork 210
Source Code Setup: Linux Mint
Morsmalleo edited this page Jul 19, 2023
·
10 revisions
Required for Decompiling, Building and Signing.
sudo apt-get install openjdk-11-jdk* -y
Required to run the Application.
sudo apt-get install nodejs npm -y
Required for Signing
32bit Linux Only
sudo apt-get install zipalign -y
Required for Git Cloning
sudo apt-get install git -y
- Coming Soon!
- Download a copy of the AhMyth source code as a
.zip
archive or usegit clone
to obtain a copy.
git clone https://GitHub.com/Morsmalleo/AhMyth
- Open up a New terminal (or use your current terminal if you used
git clone
) and change directories to theAhMyth/AhMyth-Server
directory
cd path/to/AhMyth/AhMyth-Server
- Install electron v11.0.0 locally inside the
AhMyth-Server
directory usingnpm
npm install [email protected]
- Launch AhMyth using
npm
or run thestart_linux
file.
npm start
npx electron ./app --no-sandbox start
./start_linux
- This setup Guide was written for Linux Mint, a derivative of Ubuntu GNU/Linux (which is in turn a derivative of Debian)