Hi Eric,
At this moment, there is no installation step for the Python package. I'm looking to the new way proposed by Python (PIP:
http://pypi.python.org/pypi/pip).
The simplest way right now is to add the path of BTK manually in Python. You can do it using the following code:
# Python code
import sys
sys.path.append('btk_build_dir/bin')
# You can then import BTK as a standard package.
import btk
The documentation is still limited as only the classes are documented. A contributor (Fabien Leboeuf) sent me a nice tutorial for the use of BTK in Python. I have to translate it in Doxygen, but it will be included in BTK 0.2. You can look into the folder Testing/Python, you will find lots of examples.
Let me know, if you need more informations.
Arnaud