I hope you can run topParser So you have python installed (I believe that is a default for a mac)
typing python gets you into a python prompt You will also need wx so after getting into the python prompt try import wx hopefully this will give just move onto the next line and give you >>> If not you will get a message similar to this Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named wx This is most likely so you will need to install wx wx only works of python version 2.x, so while in the python prompt it is worth check the version with the following commands >>> import sys >>> print sys.version My computer gives 2.7.5+ (default, Jun 2 2013, 13:26:34) [GCC 4.7.3] Hopefully yours will be 2.7 as well although 2.6 may work you can then get the installer from http://www.wxpython.org/download.php Once that is installed, you should not need to go back into the python prompt but from the directory that topParser is in type python TopParser.py If (when) this works you can always set up a short cut to do this for you Hope this works for you, if not just ask and I will try again. Guess I should get this on the wiki, if it works Andrew On 13/08/13 21:06, Martin Sluka wrote: > > Aug 7, 2013 v 11:41 AM, Dave Clucas <dave at daveclucas.com > <mailto:dave at daveclucas.com>>: > >>> But I do not have a windows machine, I am on Debian. I think there is a >>> hacked version that might work on Debian. > > It is "Turkish language" for me. > > I use MacOSX. There is standard Terminal and command Python returns: > > ~ martinsluka$ python > Python 2.7.3 (default, Mar 17 2013, 13:56:19) > [GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on > darwin > Type "help", "copyright", "credits" or "license" for more information. >>>> > > So my question is: Is there way to run TopParser from my Terminal? > > m.s. > > > _______________________________________________ > Therion mailing list > Therion at speleo.sk > http://mailman.speleo.sk/mailman/listinfo/therion >
