|
1 year ago | |
---|---|---|
build-windows | 1 year ago | |
examples | 2 years ago | |
src/pEp | 1 year ago | |
test | 2 years ago | |
utils | 2 years ago | |
.gitignore | 1 year ago | |
.hgignore | 2 years ago | |
LICENSE.txt | 6 years ago | |
Makefile | 2 years ago | |
Makefile.conf | 2 years ago | |
README.md | 2 years ago | |
local.conf.example | 2 years ago | |
make.mak | 1 year ago | |
setup.cfg | 2 years ago | |
setup.py | 1 year ago |
These build instructions should work on:
To build against system wide pEp installation (libs/includes)
python3 setup.py build_ext
To build against a pEp installation in your home dir (libs/includes):
python3 setup.py build_ext --local
To build against a pEp installation in a custom installation root (libs/includes)
python3 setup.py build_ext --prefix=<path_to_your_install_root>
To install the extension module system wide, as root, run:
python3 setup.py install
To install the extension module into you home dir
python3 setup.py install --user
To install the extension module into a custom destination
python3 setup.py install --prefix=<custom_destination_root>
Attention: The ~ (tilde) does not get expanded, but env vars work ($HOME).