I just released Qsnake 0.9.11. Qsnake is a source distribution for
scientific computing, with unified Python interface.
Here is how to try it:
wget --no-check-certificate
https://github.com/downloads/qsnake/qsnake/qsnake-0.9.11.tar
tar xf qsnake-0.9.11.tar
cd qsnake-0.9.11
./qsnake -b
And then you run it by:
./qsnake
You can also try the preliminary GUI in the browser by launching the
lab() inside qsnake. So far only linux is supported (I only tested
several versions of Ubuntu so far). Please report any bugs, or if it
fails to build.
Ondrej
In [4]: lab()
Starting Web GUI: Open your web browser at http://localhost:8888/
Press CTRL+C to kill it
---------------------------------------------------------------------------
error Traceback (most recent call last)
/home/sameer/projects/qsnake-0.9.12/spkg/base/qsnake_run.py in <module>()
----> 1 lab()
/home/sameer/projects/qsnake-0.9.12/spkg/base/qsnake_run.py in run_lab()
641 application = NotebookApplication()
642 http_server = httpserver.HTTPServer(application)
--> 643 http_server.listen(8888)
644 ioloop.IOLoop.instance().start()
645
/home/sameer/projects/qsnake-0.9.12/local/lib/python2.6/site-packages/tornado/httpserver.pyc
in listen(self, port, address)
153
154 """
--> 155 self.bind(port, address)
156 self.start(1)
157
/home/sameer/projects/qsnake-0.9.12/local/lib/python2.6/site-packages/tornado/httpserver.pyc
in bind(self, port, address)
170 self._socket.setsockopt(socket.SOL_SOCKET,
socket.SO_REUSEADDR, 1)
171 self._socket.setblocking(0)
--> 172 self._socket.bind((address, port))
173 self._socket.listen(128)
174
/home/sameer/projects/qsnake-0.9.12/local/lib/python/socket.pyc in
bind(self, *args)
error: [Errno 98] Address already in use
Sameer
On Tue, May 10, 2011 at 10:42 AM, Sameer Regmi <reg...@gmail.com> wrote:
> Qsnake 0.9.11 successfully built in my 64 bit lucid ubuntu laptop. The
Thanks a lot for testing it!
> GUI is nice but I could not figure out how I can evaluate the codes.
You need to enable "websockets" in Firefox. If you use the latest
Chrome, it should work out of the box.
Interesting. For me, I get the following if I press ctrl-C:
https://gist.github.com/965070
You can try the latest version by following the instructions in the
"Development Version":
https://github.com/qsnake/qsnake/blob/master/README.rst
then you'll get all the latest fixes.
OOndrej