Installation¶
Contents
Official releases¶
Official releases are available from PyPI.
Install via pip¶
The easier way to install customadmin is via pip. Enter this command:
pip install twentytab-customadmin
...and the package will install automatically.
Install via source code¶
Alternatively, you can download the .gz distribution file available from PyPI and unpack it. Inside there is a script named setup.py. Enter this command:
python setup.py install
...and, again, the package will install automatically.
Development versions¶
If you prefer, you can get the latest source from our github repository:
git clone https://github.com/20tab/twentytab-customadmin.git
Add the resulting folder to your PYTHONPATH or symlink the twentytab-customadmin directory inside it into a directory which is on your PYTHONPATH, such as your Python installation’s site-packages directory.
You can verify that the application is available on your PYTHONPATH by opening a Python interpreter and entering the following commands:
>>> import customadmin
>>> customadmin.VERSION
(0, 7)
When you want to update your copy of the source code, run git pull from within the twentytab-customadmin directory.
Caution
The development version may contain bugs which are not present in the release version and introduce backwards-incompatible changes.
If you’re tracking master, keep an eye on the recent Commit History before you update your copy of the source code.