Hey guys,
how can i activate the web interface on my mac.
I tried:
QLC+.app\Contents\MacOS\qlcplus --web
...its not working "command not found" see screenshot 1
also tried:
/Applications/QLC+.app/Contents/MacOS
qlcplus --web
..."command not found" see screenshot 2
What can i do?
unable to activate Webinterface - need help
-
- Posts: 14
- Joined: Thu Dec 07, 2017 3:26 pm
- Real Name: Sascha
- mcallegari
- Posts: 4823
- Joined: Sun Apr 12, 2015 9:09 am
- Location: Italy
- Real Name: Massimo Callegari
- Contact:
It's a trivial '*nix' knowledge problem.
From a terminal, you can invoke a binary with an absolute path, like this:
However, if you 'cd' into the directory first, you need to specify the path from which you launch the binary:
So basically add './' before qlcplus.
From a terminal, you can invoke a binary with an absolute path, like this:
Code: Select all
/aaa/bbb/ccc/binary
Code: Select all
cd /aaa/bbb/ccc
./binary