Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 927 Bytes

QNAP.md

File metadata and controls

42 lines (35 loc) · 927 Bytes
title description published date tags editor dateCreated
QNAP
true
2022-09-18 05:00:29 UTC
markdown
2022-09-18 05:00:27 UTC

Python and PIP on Qnap

For Python 2.7 and Pip on QNAP perform the following steps,

  1. Install the Python 2.7.12.1 package from the Qnap App Store

  2. Log in to your NAS via ssh

  3. Enter the command below

export PATH=/opt/QPython2/bin:$PATH
  1. Check the correct version of Python is installed and active using
python --version
  1. Install Pip using
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
  1. Install Flexget using
Pip install flexget
  1. Create the directory below and add your config.yml
/root/.flexget

!!! qnap root is reset after every reboot along with the path changes in step 3. Steps 3 and 7 need to be redone after every reboot. This will be updated with how to enact permenant changes shortly