I'm trying to install ngrok
(which I've been using for a while on Windows with no issues) on my 1 week old yosemite and these are the steps I've followed so far.
Downloaded ngrok from here https://ngrok.com/download.
Unziped the file and copied the Unix Executable File into application.
Now from what I understand I just need to open the terminal, move inside the application folder and write ngrok http 80
. The result of this is "command not found".
I've even signed up at the ngrok
website and run from terminal the command ./ngrok authtoken "blablabla"
and the result is "No such file or directory"
Can anyone tell me how to proceed to be able to activate the tunnel with ngrok
?
ls ngrok
should show you that the file exists. After that,./ngrok <whatever options>
should work or at least invoke the right program. – Witcher