diff --git a/doc/installation.rst b/doc/installation.rst index a538cd6..8ac5279 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -6,7 +6,15 @@ From Ubuntu Package .. code-block:: bash - sudo dpkg -i python-libraclient_1.0-1_all.deb + sudo apt-get install python-pip + sudo pip install python-novaclient requests --upgrade + sudo dpkg -i python-libraclient_1.2-1_all.deb + +If the last command fails with an unmet dependency run this to fix it: + +.. code-block:: bash + + sudo apt-get -fy install From Source -----------