Pages:
Author

Topic: goxgui - a Graphical Bitcoin Trading Tool for MtGox - page 6. (Read 29592 times)

member
Activity: 70
Merit: 10
Are you trying to run a gui though SSH?

It's not going to work mate, just use it on what ever computer your posting on here from.
BCB
vip
Activity: 1078
Merit: 1002
BCJ
gxogui folder is in ~
setup is headless
I've updated permissions for goxgui folder
755 goxgui

Okay, to fix your needing to be root:
Code:
sudo chmod 775 ~/goxgui/*

To fix your X server issue, you need to have a display manager (it's a gui, so this really should have been obvious).
Find the one you like, and install it with a window manager.

Example (GNOME):
Code:
sudo apt-get install gdm gnome-shell


odin,

thanks for you help.

I've run those commands and i'm still getting:

application.py: cannot connect to X server :0.0

Huh?

If your not already in the x server, run
Code:
startx

Fatal server error:
no screens found
member
Activity: 70
Merit: 10
gxogui folder is in ~
setup is headless
I've updated permissions for goxgui folder
755 goxgui

Okay, to fix your needing to be root:
Code:
sudo chmod 775 ~/goxgui/*

To fix your X server issue, you need to have a display manager (it's a gui, so this really should have been obvious).
Find the one you like, and install it with a window manager.

Example (GNOME):
Code:
sudo apt-get install gdm gnome-shell


odin,

thanks for you help.

I've run those commands and i'm still getting:

application.py: cannot connect to X server :0.0

Huh?

If your not already in the x server, run
Code:
startx
BCB
vip
Activity: 1078
Merit: 1002
BCJ
gxogui folder is in ~
setup is headless
I've updated permissions for goxgui folder
755 goxgui

Okay, to fix your needing to be root:
Code:
sudo chmod 775 ~/goxgui/*

To fix your X server issue, you need to have a display manager (it's a gui, so this really should have been obvious).
Find the one you like, and install it with a window manager.

Example (GNOME):
Code:
sudo apt-get install gdm gnome-shell


odin,

thanks for you help.

I've run those commands and i'm still getting:

application.py: cannot connect to X server :0.0

Huh?
member
Activity: 70
Merit: 10
gxogui folder is in ~
setup is headless
I've updated permissions for goxgui folder
755 goxgui

Okay, to fix your needing to be root:
Code:
sudo chmod 775 ~/goxgui/*

To fix your X server issue, you need to have a display manager (it's a gui, so this really should have been obvious).
Find the one you like, and install it with a window manager.

Example (GNOME):
Code:
sudo apt-get install gdm gnome-shell
member
Activity: 96
Merit: 10
Works beautifully in osx mountain lion—used macports to install dependencies except for PyQt, which I built from source. So far, so good: accepted credentials, displays balances correctly, and is surprisingly snappy. Great work!
BCB
vip
Activity: 1078
Merit: 1002
BCJ
sebastopol

looks slick but I can't get it to run on ubunut

any ideas why:

getting this error on ubuntu

$ ./start.sh
Traceback (most recent call last):
  File "../goxgui/application.py", line 68, in
    app = Application(sys.argv)
  File "../goxgui/application.py", line 40, in __init__
    self.logfile = open('log.txt', 'w')
IOError: [Errno 13] Permission denied: 'log.txt'


then when I run

$ sudo ./start.sh
application.py: cannot connect to X server


thx.

We need more information.  Where is the goxgui folder at?  Is your ubuntu setup up headless (without KDE, GNOME, XDE, etc.)?  What are the permissions for the goxgui folder (eg. 777, 551, etc)?

gxogui folder is in ~
setup is headless
I've updated permissions for goxgui folder
755 goxgui
member
Activity: 70
Merit: 10
sebastopol

looks slick but I can't get it to run on ubunut

any ideas why:

getting this error on ubuntu

$ ./start.sh
Traceback (most recent call last):
  File "../goxgui/application.py", line 68, in
    app = Application(sys.argv)
  File "../goxgui/application.py", line 40, in __init__
    self.logfile = open('log.txt', 'w')
IOError: [Errno 13] Permission denied: 'log.txt'


then when I run

$ sudo ./start.sh
application.py: cannot connect to X server


thx.

We need more information.  Where is the goxgui folder at?  Is your ubuntu setup up headless (without KDE, GNOME, XDE, etc.)?  What are the permissions for the goxgui folder (eg. 777, 551, etc)?
BCB
vip
Activity: 1078
Merit: 1002
BCJ
sebastopol

looks slick but I can't get it to run on ubunut

any ideas why:

getting this error on ubuntu

$ ./start.sh
Traceback (most recent call last):
  File "../goxgui/application.py", line 68, in
    app = Application(sys.argv)
  File "../goxgui/application.py", line 40, in __init__
    self.logfile = open('log.txt', 'w')
IOError: [Errno 13] Permission denied: 'log.txt'


then when I run

$ sudo ./start.sh
application.py: cannot connect to X server


thx.
newbie
Activity: 38
Merit: 0
Very nice.  Works very well on Windows 8.  Thanks!

Works great on Gentoo Linux!  Grin  Grin  Grin

But it is working for me now so yeah [Mac OSX 10.8.3]

You guys don't know what this means for a developer  Smiley I'm delirious  Grin
newbie
Activity: 38
Merit: 0
A philosophical word on grahps: I have added that feature on the "ToDo" list, but I believe that there are so many excellent sites out there that do graphs so much better than me that I would like to focus on a lean, easy-to-use trading tool.
newbie
Activity: 38
Merit: 0
Thanks, mrlithium  Smiley
newbie
Activity: 41
Merit: 0
You can change the currency listed in the order book by editing goxtool.ini in goxgui/run.  Pity it does not change account currency Wink
newbie
Activity: 46
Merit: 0
To anyone whos on windows, if you rename "application.py" to application.pyw, Python won't launch the blank command prompt window before launching the GUI.
(though you will also have to modify the startup script - i already did anyway.)
mine now looks like this:
@echo off
set PYTHONPATH=%PYTHONPATH%;.\;.\ui
..\application.pyw

Also, the setx command in the format setx PYTHONPATH %PYTHONPATH%;.\;.\ui (or whatever the proper paths are for you, sets the path in the REGISTRY) so you dont have to keep setting it everytime.
hero member
Activity: 938
Merit: 500
https://youengine.io/

On Ubuntu pycrypto is "apt-get install python-crypto"

(they sometimes slightly change names of packages to confuse the users)
BCB
vip
Activity: 1078
Merit: 1002
BCJ
Are you running a headless ubuntu system?

What is your display manager?

How do I check??
legendary
Activity: 1498
Merit: 1000
@gweedo: try editing start.sh:

change

Code:
python ../goxgui/application.py

to 

Code:
/usr/local/bin/python ../goxgui/application.py

On the mac there is usually more than one python installed, and it's important to use the correct one. I have added OS-specific start scripts to the application.

I got it working now thanks, i actually had to directly link it to my brew installs of python to read the py-qt part. But it is working for me now so yeah
hero member
Activity: 873
Merit: 1007
Nice work. Can't wait til you have an Win installer.
newbie
Activity: 38
Merit: 0
@gweedo great, glad to hear it Smiley
Pages:
Jump to: