Merge PR420: INSTALL.rst should suggest libyaml-dev

Ideally this wouldn't be necessary: PyYAML looks like it has a pure-python
implementation. But it also has a binding to the C libyaml library, and if it
decides to use that, then the headers need to be installed.

Closes tahoe-lafs/tahoe-lafs#420
This commit is contained in:
Brian Warner 2017-06-06 10:26:26 +01:00
commit 958f79d47f

View File

@ -61,7 +61,7 @@ need a C compiler, the Python development headers, and some libraries
On a modern Debian/Ubuntu-derived distribution, this command will get you
everything you need::
apt-get install build-essential python-dev libffi-dev libssl-dev python-virtualenv
apt-get install build-essential python-dev libffi-dev libssl-dev libyaml-dev python-virtualenv
On OS-X, install pip and virtualenv as described below. If you want to
compile the dependencies yourself (instead of using ``--find-links`` to take