I have a cluster system that works with Python and some modules installed on this system — however, I wanted to use the latest version of the module — it has several methods that are not present in older versions, so I built them and it is located locally in the area that I have access to:
svn co svn://svn.code.sf.net/p/simupop/code/trunk simuPOP
cd pcre-8.34
./configure
make
make install
export PATH=/gpfs/env/yrq12edu/pcre_install/bin:$PATH
export LD_LIBRARY_PATH=/gpfs/env/yrq12edu/pcre_install/lib:$LD_LIBRARY_PATH
cd ..
cd swig-3.0.0
./configure
make
make install
export PATH=/gpfs/env/yrq12edu/swig_install/bin:$PATH
cd ..
export PYTHONPATH=/gpfs/env/yrq12edu/PythonModules/lib/python2.7/site-packages
cd simuPOP
python setup.py install
, Python , ? , , PYTHONPATH , , , , , , . Python , - , ?
,
.