Installation¶
1. Requirements¶
Python2.7 (not yet tested with Python 3 but it should work)ROOTwithPyROOTenabledmatplotlibnumpyscipy
mATLASplotlib is developed and tested on Linux and Mac.
2. Automatic installation with pip¶
To install a released version of mATLASplotlib use pip.
To install in your home directory:
pip install --user mATLASplotlib
To install system-wide (requires root privileges):
sudo pip install mATLASplotlib
3. Upgrading with pip¶
To upgrade with pip simply do
pip install -U mATLASplotlib
running with sudo as before if this is a system-wide installation
4. Installing from source¶
Clone the repository with git:
git clone https://github.com/jemrobinson/mATLASplotlib.git
After doing this, you should use the setup.py script to install.
To install in your home directory:
python setup.py install --user
To install system-wide (requires root privileges):
sudo python setup.py install