|
@@ -16,7 +16,7 @@ pip install -r requirements.txt
|
16
|
16
|
deactivate
|
17
|
17
|
|
18
|
18
|
|
19
|
|
-# Open Cutelog
|
|
19
|
+# Open ptpython
|
20
|
20
|
venv/bin/ptpython
|
21
|
21
|
|
22
|
22
|
|
|
@@ -24,3 +24,12 @@ venv/bin/ptpython
|
24
|
24
|
source venv/bin/activate
|
25
|
25
|
pip install -U -r requirements.txt
|
26
|
26
|
deactivate
|
|
27
|
+
|
|
28
|
+# Add pylibs to ptpython
|
|
29
|
+git submodule init
|
|
30
|
+git submodule update
|
|
31
|
+cd pylibs
|
|
32
|
+git submodule init
|
|
33
|
+git submodule update
|
|
34
|
+cd ../venv/lib/python3.*/site-packages
|
|
35
|
+for lib in `ls -d ../../../../pylibs/*/`; do ln -s $lib; done
|