2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 11:05:41 +00:00

Merge pull request #729 from SchrodingersGat/doc-fix

Update requirements documentation
This commit is contained in:
Oliver
2020-04-16 10:11:45 +10:00
committed by GitHub
2 changed files with 9 additions and 2 deletions

View File

@ -17,10 +17,16 @@ Requirements
To install InvenTree you will need the following system components installed: To install InvenTree you will need the following system components installed:
* python3 * python3
* python3-dev
* python3-pip (pip3) * python3-pip (pip3)
* g++
* make * 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 Virtual Environment
------------------- -------------------

View File

@ -1,3 +1,4 @@
wheel>=0.34.2 # Wheel
Django==2.2.10 # Django package Django==2.2.10 # Django package
pillow==6.2.0 # Image manipulation pillow==6.2.0 # Image manipulation
djangorestframework==3.10.3 # DRF framework djangorestframework==3.10.3 # DRF framework