Skip to content

Installation

Paul Breugnot edited this page Jul 7, 2019 · 1 revision

Installation

Download the project

From the directory of your choice : git clone https://github.com/PaulBreugnot/UniPix

Or directly download and unzip this repository.

Notice that the application will upload and write files in the cloned repository, so you must have write access to the directory when the application is launched.

pip

Make sure pip is installed and updated:

  • Linux or Mac OS : pip install -U pip
  • On Windows : python -m pip install -U pip

Dependencies

From the installation repository :

pip install requirements.txt

Create the database

From the installation repository :

python manage.py migrate

(might be python3 instead for some distributions)

Launch the application

To launch the application, run python manage.py runserver from the installation directory, and UniPix should be available at localhost:8000! You need to use this command (and only this one) each time you want to launch the application.

You can stop the server using CTRL+C.

Clone this wiki locally