Post
Topic
Board Project Development
Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux]
by
Askit2
on 21/07/2015, 08:53:31 UTC
tried install it on Debian VPS. but there error message
Code:
-bash: qmake: command not found

Installation

Windows: just download exe file and save it to safe place.

Install commands under Linux with Qt5 (Prefered):
Code:
sudo apt-get install g++ libssl-dev libglu1-mesa-dev qt5-qmake qtscript5-dev qtmultimedia5-dev
export QT_SELECT=5
qmake QtBitcoinTrader_Desktop.pro
make && make install && make clean
Code:
Cannot find file: QtBitcoinTrader_Desktop.pro.

Any chance you already cloned the git repository? If not then you would need to do that. I might post some code for it tomorrow it's on a different computer so I'm too lazy to post it now.

Edit:
Code:
git clone https://github.com/JulyIGHOR/QtBitcoinTrader/tree/testing

That will put the whole project in whatever folder you are in when you run it making a sub folder called QtBitcoinTrader. Once you have run that once the following code will grab the current version. I'm sure you don't need the last 4 lines but it should work great. I have it in a .sh file.


Code:

git fetch --all

git merge

git checkout master

cd src

qmake QtBitcoinTrader_Desktop.pro

make

make install