diff options
author | Hrishi Hiraskar | 2016-12-23 23:03:31 +0530 |
---|---|---|
committer | Hrishi Hiraskar | 2016-12-23 23:03:31 +0530 |
commit | bc9f97bcc6fbe57174431ee8790ebf2e62c95494 (patch) | |
tree | 64040bf8741491e50fdbef133ca8f0dbd5ff10ec | |
parent | c960f0d4fb9b6a68e0c33a0248fc5ce1f1bf62ab (diff) | |
download | xcos-on-web-bc9f97bcc6fbe57174431ee8790ebf2e62c95494.tar.gz xcos-on-web-bc9f97bcc6fbe57174431ee8790ebf2e62c95494.tar.bz2 xcos-on-web-bc9f97bcc6fbe57174431ee8790ebf2e62c95494.zip |
Update README
-rw-r--r-- | README.md | 18 | ||||
-rwxr-xr-x | SendLog.py | 2 |
2 files changed, 16 insertions, 4 deletions
@@ -5,9 +5,21 @@ The main aim of this project will be to port core functionalities of Xcos to a b ## Installation -* Download the sources of Scilab 5.5.2 32 bit from `https://github.com/kamakshidasan/scilab` -* After building, change the Scilab path in SendLog.py -* Host on Flask and run index.html +1. First clone following repositories: + + `git clone https://github.com/FOSSEE/xcos-on-web` + + `git clone https://github.com/Hrily/scilab` + +2. Then go into `scilab` folder and run following commands: + + `./configure` + + `make` + +3. Then run `SendLog.py` from `xcos-on-web` folder to host the xcos on localhost i.e. `127.0.0.1:8001/` + +(Note that the directories `scilab` and `xcos-on-web` must be in same directory.) ## License information This project has a Creative Commons Public License. @@ -29,7 +29,7 @@ ENDING = 1 DATA = 2 NOLINE = -1 # Scilab dir, can't run absolute paths -SCI = "../../../../scilab/scilab_master_old/scilab/" +SCI = "../scilab/" # List to store figure IDs figure_list = [] # List to store filenames of files |