1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-15 14:53:53 -05:00

Add Arch Linux solution to missing OpenSSL lib

Dany Marcoux
2017-11-07 18:07:30 +01:00
parent 073a0e22c6
commit 465f134bbe

@@ -117,6 +117,14 @@ LDFLAGS=-L/usr/lib64 \
pyenv install -v 3.4.3
```
or (checked on Arch Linux):
```sh
LDFLAGS="-L/usr/lib/openssl-1.0" \
CFLAGS="-I/usr/include/openssl-1.0" \
pyenv install -v 3.4.3
```
* Alternatively, if you installed openssl with macports, use the following paths:
```sh