Skip to content

Commit 2dda508

Browse files
committed
Added note about installation requirements
1 parent db5cb6a commit 2dda508

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
Check the [examples](https://github.com/mehcode/python-xmlsec/tree/master/tests/examples) to see various examples of signing and verifying using the library.
1010

11+
## Requirements
12+
- libxml2 >= 2.9.1
13+
- libxmlsec1 >= 1.2.14
14+
1115
## Install
1216

1317
### Pre-Install
@@ -18,6 +22,15 @@ Check the [examples](https://github.com/mehcode/python-xmlsec/tree/master/tests/
1822
apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-opensssl
1923
```
2024

25+
Note: There is no required version of libxml2 for ubuntu precise,
26+
so need to dowload and install it manually.
27+
```sh
28+
wget http://xmlsoft.org/sources/libxml2-2.9.1.tar.gz
29+
tar -xvf libxml2-2.9.1.tar.gz
30+
cd libxml2-2.9.1
31+
./configure && make && make install
32+
```
33+
2134
#### Linux (CentOS)
2235

2336
```sh

0 commit comments

Comments
 (0)