Merge pull request #128 from lovengulu/issue127
solves issue #127 - install instructions
This commit is contained in:
commit
51fb61faf2
2 changed files with 10 additions and 1 deletions
10
INSTALL
10
INSTALL
|
|
@ -7,4 +7,12 @@ For installation use 'make install'. Optionally DESTDIR can be appended.
|
|||
By default, the tuned modules are installed to the Python3 destination
|
||||
(e.g. /usr/lib/python3.6/site-packages/) and shebangs in executable
|
||||
Python files are modified to use Python3. If you want tuned to use Python2
|
||||
instead, use 'make PYTHON=python2 install'.
|
||||
instead, set PYTHON to the full path of Python2. Example:
|
||||
make PYTHON=/usr/bin/python2 install
|
||||
|
||||
tuned requires some Python packages in order to run.
|
||||
Those packages are listed in 'requirements.txt'.
|
||||
|
||||
Use: 'pip3 install -r requirements.txt' (or 'pip install -r requirements.txt' for Python2) to install them.
|
||||
|
||||
|
||||
|
|
|
|||
1
requirements.txt
Normal file
1
requirements.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
dmidecode
|
||||
Loading…
Reference in a new issue