diff options
author | Philip Sargent <philip@Muscogee.localdomain> | 2020-04-26 00:49:29 +0100 |
---|---|---|
committer | Philip Sargent <philip@Muscogee.localdomain> | 2020-04-26 00:49:29 +0100 |
commit | 2b39dec560b8029e3d0ef6f1fae2b1ecfc759f97 (patch) | |
tree | a026cd821e610988dfa7e971b0ef7955b2da5cb5 /README.txt | |
parent | 0b85a9d330d0379a475322bb63fbe476594069f3 (diff) | |
download | troggle-2b39dec560b8029e3d0ef6f1fae2b1ecfc759f97.tar.gz troggle-2b39dec560b8029e3d0ef6f1fae2b1ecfc759f97.tar.bz2 troggle-2b39dec560b8029e3d0ef6f1fae2b1ecfc759f97.zip |
installation notes
Diffstat (limited to 'README.txt')
-rw-r--r-- | README.txt | 30 |
1 files changed, 25 insertions, 5 deletions
@@ -13,16 +13,36 @@ Install Django with the following command: sudo apt install python-django (on debian/ubuntu) -- does not work now as we need specific version +requirements.txt: +Django==1.7.11 +django-registration==2.1.2 +mysql +#imagekit +django-imagekit +Image +django-tinymce==2.7.0 +smartencoding +unidecode + Install like this: -sudo apt install pip +sudo apt install pip # does not work on WSL1 Ubuntu 20.04. Have to install from source pip install django==1.7 -pip install django-tinymce=2.0.1 +pip install django-tinymce==2.0.1 sudo apt install libfreetype6-dev -pip install --no-cache-dir pillow==2.7.0 pip install django-registration==2.0 pip install unidecode - -If you want to use MySQL or Postgresql, download and install them. However, you can also use Django with Sqlite3, which is included in Python and thus requires no extra installation. +pip install --no-cache-dir pillow==2.7.0 # fails horribly on installing Ubuntu20.04 +pip install --no-cache-dir pillow # installs on Ubuntu20.04 , don't know if it works though + +If you want to use MySQL or Postgresql, download and install them. +However, you can also use Django with Sqlite3, which is included in Python and thus requires no extra installation. +pip install pygraphviz +apt install survex + +pip install django-extensions +pip install pygraphviz # fails to install +pip install pyparsing pydot # installs fine +django extension graph_models # https://django-extensions.readthedocs.io/en/latest/graph_models.html |