PyKCS11 build instructions (1.1.0.0)
Unix
To build the library:
#> make build
To build the library documentation using epydoc:
#> make doc
You can build for a specific python version setting the PYTHONVER env variable (default is 2.4):
#> PYTHONVER=2.3 make build
To install the package in the default python location run:
#> python setup.py install
or use setup.py's options, such as --prefix --root, to select a different location
Win32
To build the library using VS.NET:
#> nmake -f Makefile.win32 build
To install the package in the default python location run:
#> python setup.py install
To build the win32 installation package run:
#> python setup.py bdist_wininst
You can also build a simple archive containing all binaries:
#> python setup.py bdist
