|
@@ -2,21 +2,26 @@
|
2
|
2
|
|
3
|
3
|
Installation instruction for cutelog
|
4
|
4
|
|
|
5
|
+
|
5
|
6
|
# Install
|
6
|
7
|
|
|
8
|
+
|
7
|
9
|
## Create Virtualenv
|
8
|
10
|
virtualenv venv
|
9
|
11
|
|
|
12
|
+
|
10
|
13
|
## Install Cutelog
|
11
|
|
-source venv/bin/activate
|
12
|
|
-pip install -r requirements.txt
|
|
14
|
+source venv/bin/activate
|
|
15
|
+pip install -r requirements.txt
|
13
|
16
|
deactivate
|
14
|
17
|
|
|
18
|
+
|
15
|
19
|
# Open Cutelog
|
16
|
20
|
venv/bin/cutelog
|
17
|
21
|
|
18
|
22
|
|
19
|
23
|
# Upgrade
|
20
|
|
-source venv/bin/activate
|
21
|
|
-pip install -U -r requirements.txt
|
|
24
|
+source venv/bin/activate
|
|
25
|
+pip install -U -r requirements.txt
|
22
|
26
|
deactivate
|
|
27
|
+
|