Warning, /graphics/kst-plot/pyKst/INSTALL is written in an unsupported language. File is not indexed.
0001 To manually install pyKst: 0002 i) install requirements 0003 -the latest kst2 0004 -python2 (not python3), because of the following requirement 0005 -numpy >= 1.6 (1.6.1 is known to work) 0006 -scipy >= 0.9 (0.9.0 is known to work) 0007 -pyside or PyQT4 0008 0009 ii) copy pykstpp.py to your system's python script directory 0010 [host]$ sudo python2.7 setup.py install 0011 0012 iii) To test it, go into the demo directory, and try one. 0013 [host demo]$ python2 ./dataobjects.py 0014 0015 ====== 0016 Example for ubuntu: 0017 0018 0) make sure you have the absolute latest kst2 from the kst-plot ppa. See kst.kde.org 0019 0020 1) install dependencies for numpy and scipy 0021 sudo apt-get install python-numpy python-scipy python python-dev python-qt4 libatlas-base-dev gcc gfortran g++ 0022 0023 2) copy files 0024 [host]$ sudo python2.7 setup.py install 0025 0026 6) test it 0027 [host]$ cd demo 0028 [host]$ python2.7 dataobjects.py 0029 0030 0031 ======== 0032 Try with cmake: 0033 0034 # install the python files where they belong 0035 sudo cmake ../cmake/pyKst 0036 0037 # Download, build, and install the right versions of numpy and scipy. 0038 # This is not needed if you already have them 0039 sudo make 0040