Difference between revisions of "Debrepository"

From RobotinoWiki
(Ubuntu 18.04 Xenial (image version 4.x))
Line 14: Line 14:
 
sudo su
 
sudo su
 
echo "deb http://packages2.openrobotino.org bionic main" > /etc/apt/sources.list.d/openrobotino.list
 
echo "deb http://packages2.openrobotino.org bionic main" > /etc/apt/sources.list.d/openrobotino.list
 +
</pre>
 +
 +
 +
==Install single package==
 +
If you downloaded a single package you need to install all its dependencies manually. This can be done with the following command
 +
<pre>
 +
gdebi my_package_1.0.deb
 
</pre>
 
</pre>

Revision as of 11:50, 5 June 2019

Import key file

wget -qO - http://packages.openrobotino.org/keyFile | sudo apt-key add -

Ubuntu 16.04 Xenial (image version 3.x)

sudo su
echo "deb http://packages.openrobotino.org/xenial xenial main" > /etc/apt/sources.list.d/openrobotino.list

Ubuntu 18.04 Bionic (image version 4.x)

sudo su
echo "deb http://packages2.openrobotino.org bionic main" > /etc/apt/sources.list.d/openrobotino.list


Install single package

If you downloaded a single package you need to install all its dependencies manually. This can be done with the following command

gdebi my_package_1.0.deb