Get answers & advice for all of your 3D printing & Free Software needs here!
-
mcamou
- Posts: 29
- Joined: Mon Mar 07, 2016 12:14 pm
Post
by mcamou » Sat Dec 01, 2018 11:46 am
Hi,
I'm trying to install Cura Lulzbot Edition on my Ubuntu 18.10 (cosmic) laptop. I've added the following to /etc/apt/sources.list.d/cura-lulzbot.list:
Code: Select all
deb http://download.alephobjects.com/ao/aodeb stretch main
After doing apt update I get the following:
Code: Select all
# apt install cura-lulzbot
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
cura-lulzbot : Depends: libssl1.0.2 but it is not installable
E: Unable to correct problems, you have held broken packages.
-
mcamou
- Posts: 29
- Joined: Mon Mar 07, 2016 12:14 pm
Post
by mcamou » Mon Dec 03, 2018 9:37 am
Wouldn't it be better to depend on a proper Ubuntu package instead of a Debian dependency that has to be manually installed? Say
https://packages.ubuntu.com/cosmic/libssl1.0.0. Also, if something needs to be done, the article should be updated accordingly.
-
alexei
- Posts: 10
- Joined: Tue Jan 26, 2016 10:38 am
Post
by alexei » Tue Dec 04, 2018 9:48 am
mcamou wrote: ↑Mon Dec 03, 2018 9:37 am
Wouldn't it be better to depend on a proper Ubuntu package instead of a Debian dependency that has to be manually installed? Say
https://packages.ubuntu.com/cosmic/libssl1.0.0. Also, if something needs to be done, the article should be updated accordingly.
Hi mcamou,
We are building CuraLE on Debian buster, therefore all the dependencies are taken from Debian, not Ubuntu.
I have added libssl1.0.2 to our repo.
Also I noticed you do have a stretch repo added in your first comment. since 18.10 is based on buster, the repo line should be
Code: Select all
deb http://download.alephobjects.com/ao/aodeb buster main
-
mcamou
- Posts: 29
- Joined: Mon Mar 07, 2016 12:14 pm
Post
by mcamou » Tue Dec 04, 2018 10:54 am
Great! Thanks @alexei. I was able to install it now. Perhaps it would be a good idea to update
https://www.lulzbot.com/learn/tutorials ... ion-ubuntu ? That's where I got the installation instructions from (and the first result when Googling "install cura lulzbot linux").
-
veggiebenz
- Posts: 1
- Joined: Tue Feb 12, 2019 9:15 am
Post
by veggiebenz » Tue Feb 12, 2019 9:18 am
I'm on 18.04 (bionic) but I had great success using this:
Code: Select all
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak && sudo sed -i '$a deb http://download.alephobjects.com/ao/aodeb buster main' /etc/apt/sources.list && sudo apt-get update && sudo apt-get install cura-lulzbot
I didn't find a bionic repo but the buster (18.10) repo worked great for me. It also had the missing library.
-
dvienne
- Posts: 3
- Joined: Sat Dec 03, 2016 1:45 pm
Post
by dvienne » Fri Feb 15, 2019 4:00 am
veggiebenz wrote: ↑Tue Feb 12, 2019 9:18 am
I'm on 18.04 (bionic) but I had great success using this:
Code: Select all
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak && sudo sed -i '$a deb http://download.alephobjects.com/ao/aodeb buster main' /etc/apt/sources.list && sudo apt-get update && sudo apt-get install cura-lulzbot
I didn't find a bionic repo but the buster (18.10) repo worked great for me. It also had the missing library.
Indeed, this helped me a lot installing cura-lulzbot on Ubuntu 18.04.1 LTS
Thx