Ubuntu – How tonstall Lazarus on Ubuntu

installationlazarus

Above I installed with Central Programs, but yesterday i install a ubuntu in my mac and i dont see the lazarus on the Central Programs.

Anyone have a url with installation ubuntu, or the code for i use on the prompt?

how do this I need to download?
https://apps.ubuntu.com/cat/search/?q=lazarus&op=

Thanks!

Best Answer

Getting Lazarus from Ubuntu repository

BEWARE: THIS PAGE IS OUTDATED.

sudo apt-get install lazarus-ide

Getting Lazarus from freepascal repository

Add the key

gpg --keyserver hkp://pgp.mit.edu:11371 --recv-keys 6A11800F; gpg -a --export 6A11800F | sudo apt-key add -

Add the repository

echo "deb http://www.hu.freepascal.org/lazarus/ lazarus-stable universe" | sudo tee /etc/apt/sources.list.d/lazarus-stable.list

Installtion

sudo apt-get update; sudo apt-get install lazarus

Source

Related Question