Skip to content
This repository was archived by the owner on Nov 11, 2019. It is now read-only.

Commit 96dd400

Browse files
committed
293. Document the missing packages required for lxml
The python headers and zlib headers are required for lxml installation but are not mentioned in dev_hacking.rst. Specify the names of the Debian/Ubuntu and Fedora packages for those and remove python-dev package from the requirements for using postgresql.
1 parent a4b3f4f commit 96dd400

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

docs/contributors/dev_hacking.rst

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,19 @@ Debian::
5353
libxml2-dev \
5454
libxslt-dev \
5555
python-pip \
56-
python-virtualenv
56+
python-virtualenv \
57+
libpython-dev \
58+
libz-dev
5759

5860
Fedora::
5961

6062
$ yum install \
6163
libxml2-devel \
6264
libxslt-devel \
6365
python-pip \
64-
python-virtualenv
66+
python-virtualenv \
67+
python-devel \
68+
zlib-devel
6569

6670

6771
Python 3.3+
@@ -117,8 +121,7 @@ requirements::
117121
$ apt-get install \
118122
postgresql \
119123
build-essential \
120-
libpq-dev \
121-
python-dev
124+
libpq-dev
122125

123126
Then run in your virtual environment::
124127

0 commit comments

Comments
 (0)