1

I am trying to install devstack on Ubuntu server 14.04.

I had a few problems before with HOST_IP, GIT_BASE and some updates... I fixed all of them, but now I am stuck on this one. I tried apt-get update and apt-get install libsystemd-dev, and I get

E: unable to locate package libsystemd-dev
Zanna
  • 70,465

2 Answers2

3

The problem was that Ubuntu version 14.04 doesn't use systemd packages.

I tried it out on 16.04 and it is working correctly now. I want to thank you all for the support.

Zanna
  • 70,465
1

For Ubuntu 14.04 run

sudo apt-get install libsystemd-daemon-dev
N. S.
  • 371