Obtaining MATK¶
Downloading MATK¶
MATK can be obtained by:
Using git:
git clone https://github.com/dharp/matk
Clicking here
Going to https://github.com/dharp/matk and clicking on the Download ZIP button on the right
Installing MATK¶
To install MATK, enter the main directory in a terminal and
python setup.py install
Depending on your system setup and privileges, you may want to do this as root (*nix and mac systems):
sudo python setup.py install
or as user:
python setup.py install --user
If all these fail, you can set your PYTHONPATH to point to the MATK src directory
bash:
export PYTHONPATH=/path/to/matk/src
tcsh:
setenv PYTHONPATH /path/to/matk/src
Windows, I have no clue!
Testing installation¶
To test that the MATK module is accessible, open a python/ipython terminal and
import matk
If the MATK module is accessible, this will load without an error.
For more in depth analysis of MATK functionality on your system, the test suite can be run by entering the MATK tests directory in a terminal and:
python -W ignore matk_unittests.py -v
Test results will be printed to the terminal.