How to install Lazarus on Ubuntu

I have installed Lazarus from the Ubuntu Software Center before, but yesterday I tried to install Ubuntu on my Mac and I don't see Lazarus listed.

Does anyone have a URL for the Ubuntu installation or the code that I can use to install it at the command prompt? Might I find it at ?

3 Answers

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 lazarus-stable universe" | sudo tee /etc/apt/sources.list.d/lazarus-stable.list

Installtion

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

Source

3

You can also try installing it via terminal

sudo apt-get install lazarus-ide

I hope it works.

1

If you have Ubuntu installed, you can install a version of Lazarus from the the software repisitories. The desktop icon should look like this:enter image description hereenter image description here

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like