-
It seems installing on Ubuntu 18.04 fails with "missing" dependencies such as curl and libicu57 (Ubuntu 18.04 installs libicu60.) After installing curl (again) then I get a dependency error on looking for libcurl3 and libicu57... thanks in advance. |
Beta Was this translation helpful? Give feedback.
Answered by
wohali
Jun 17, 2020
Replies: 2 comments
-
Yes, absolutely it does. You may have mis-followed the installation instructions. Follow these instructions for 18.04 ( taken from here: https://docs.couchdb.org/en/latest/install/unix.html ) $ sudo apt-get install -y gnupg ca-certificates
$ echo "deb https://apache.bintray.com/couchdb-deb bionic main" \
| sudo tee /etc/apt/sources.list.d/couchdb.list
$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys \
8756C4F765C9AC3CB6B85D62379CE192D401AB61
$ sudo apt update
$ sudo apt install -y couchdb |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
janl
-
Thank you - I’ll give that a try.
…
On Jun 17, 2020 at 4:39 PM, <Joan Touzet ***@***.***)> wrote:
Yes, absolutely it does. You may have mis-followed the installation instructions.
Follow these instructions for 18.04 ( taken from here: https://docs.couchdb.org/en/latest/install/unix.html )
$ sudo apt-get install -y gnupg ca-certificates $ echo "deb https://apache.bintray.com/couchdb-deb bionic main" \ | sudo tee /etc/apt/sources.list.d/couchdb.list $ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys \ 8756C4F765C9AC3CB6B85D62379CE192D401AB61 $ sudo apt update $ sudo apt install -y couchdb
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub (#2954 (comment)), or unsubscribe (https://github.com/notifications/unsubscribe-auth/AGO647JKXM3EUIEHFITBWXTRXFA2RANCNFSM4OBAZOYA).
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, absolutely it does. You may have mis-followed the installation instructions.
Follow these instructions for 18.04 ( taken from here: https://docs.couchdb.org/en/latest/install/unix.html )