Skip to content
Snippets Groups Projects
================= INSTALL =================

tar -zxvf ParMePy-1.0.0.tar.gz
cd ParMePy-1.0.0
python setup.py install 

=> install it in python standard place.

If you want to install it in an non standard place, use --prefix or --home option 
and set PYTHONPATH accordingly.

Details : http://docs.python.org/install/index.html

================= USE =================

launch python ... (I suggest "ipython" in a terminal)

import ParMePy
help(ParMepy)

...


================= How to create a built distribution =================

cd "where the setup.py is"

python setup.py sdist

==> creates a .tar.gz in dist, ready for  "INSTALL" process above.

Options: run,
python setup.py bdist --help-formats

to create windows, rpm ... specific binaries.