mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2024-12-27 02:11:10 +08:00
Created Nix Installation (markdown)
parent
4d6d86a369
commit
41487418c8
1 changed files with 44 additions and 0 deletions
44
Nix-Installation.md
Normal file
44
Nix-Installation.md
Normal file
|
@ -0,0 +1,44 @@
|
|||
### *Nix Installation
|
||||
|
||||
* Download the script
|
||||
|
||||
```bash
|
||||
wget -O qbit_manage.py 'https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/qbit_manage.py'
|
||||
```
|
||||
|
||||
* Make it executable
|
||||
|
||||
```bash
|
||||
chmod +x qbit_manage.py
|
||||
```
|
||||
|
||||
* Get & Install Requirements
|
||||
|
||||
```bash
|
||||
wget -O requirements.txt 'https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/requirements.txt'
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
* Get Example Config
|
||||
|
||||
```bash
|
||||
wget -O config.yml.sample 'https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/config.yml.sample'
|
||||
```
|
||||
|
||||
* Create Config
|
||||
|
||||
```bash
|
||||
cp config.yml.sample config.yml
|
||||
nano -e config.yml
|
||||
```
|
||||
|
||||
* Updating
|
||||
|
||||
```bash
|
||||
wget -O qbit_manage.py 'https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/qbit_manage.py'
|
||||
chmod +x qbit_manage.py
|
||||
wget -O requirements.txt 'https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/requirements.txt'
|
||||
pip install -r requirements.txt
|
||||
wget -O config.yml.sample 'https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/config.yml.sample'
|
||||
diff -ui config.yml config.yml.sample
|
||||
```
|
Loading…
Reference in a new issue