From 4594f1e2b890da35db56bcdd91e2121248309f38 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 16 Apr 2020 09:56:32 +1000 Subject: [PATCH] Update requirements documentation - Add python3-dev and g++ - Add wheel to PIP requirements file --- docs/start.rst | 8 +++++++- requirements.txt | 3 ++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/start.rst b/docs/start.rst index 1b389d7e5b..25cc39945a 100644 --- a/docs/start.rst +++ b/docs/start.rst @@ -17,10 +17,16 @@ Requirements To install InvenTree you will need the following system components installed: * python3 +* python3-dev * python3-pip (pip3) +* g++ * make -Each of these programs need to be installed (e.g. using apt or similar) before running the ``make install`` script. +Each of these programs need to be installed (e.g. using apt or similar) before running the ``make install`` scriptm e.g. + +``` +sudo apt-get install python3 python3-dev python3-pip g++ make +``` Virtual Environment ------------------- diff --git a/requirements.txt b/requirements.txt index ff65664282..4eace551ea 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ -Django==2.2.10 # Django package +wheel>=0.34.2 # Wheel +Django==2.2.10 # Django package pillow==6.2.0 # Image manipulation djangorestframework==3.10.3 # DRF framework django-cors-headers==3.2.0 # CORS headers extension for DRF