-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
install-dependencies.sh script fails on Ubuntu 18.04 LTS #536
Comments
This is a prerequiste for #531, given that the all-in-one install script plan has a nominal target of Ubuntu 18.04. |
One more 18.04
I couldn't dismiss the dialogue box and had to switch to a virtual terminal in order to comment out the line from my Edit: This isn't an 18.04 issue, it's a problem that can arise if you already have conda installed when you run the script. The root cause seems to be that I'd installed Anaconda manually prior to running |
The MongoDB problem might resolve itself with time. Looks like Mongo simply haven't gotten around to creating any releases for Ubuntu 18.04 yet (the 'bionic' repo is almost empty). The question is whether they'll be making a release of MongoDB 3.2 for 18.04, or only newer versions. |
Thanks so much for all the details on the errors. I'll make use of it for the scripts. Hopefully we'll be able to switch to Docker at some point, and maybe also away from Mongo which is the most difficult component to install. |
FWIW, as a workaround for 18.04 installing the release of MongoDB 3.2 for 16.04 seems to work just fine. |
The
install-dependencies.sh
script fails on Ubuntu 18.04 LTS with the following issues:Attempt to
apt-get install
libpng12-dev
(forastrometry.net
) fails becauselibpng12-dev
has been replaced bylibpng-dev
after Ubuntu 16.04 (https://askubuntu.com/questions/991706/e-package-libpng12-dev-has-no-installation-candidate). Replacinglibpng12-dev
withlibpng-dev
inapt-packages-list.txt
fixes that, but would presumably break the script for old OS versions.apt-get
refuses to install MongoDB 3.2, because themongodb.org
repo for 18.04 doesn't have a release file:Making this worse, once
install-dependencies.sh
has added the MongoDB 3.2 repo to the software sources list all subsequentapt-get update
's will error out until you manually remove/disable the repo.With
libpng12-dev
replaced withlibpng-dev
and the--no-mongodb
optioninstall-dependencies.sh
runs to completion with no errors (but no MongoDB, either).The text was updated successfully, but these errors were encountered: