Browse Source

Install instructions updated

master
Dirk Alders 2 years ago
parent
commit
1d19ffdd8d
1 changed files with 10 additions and 1 deletions
  1. 10
    1
      README.md

+ 10
- 1
README.md View File

@@ -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

Loading…
Cancel
Save