zorchenhimer / MovieNight

Single instance video streaming server with integrated chat.
https://discord.gg/F2VSgjJ
MIT License
683 stars 87 forks source link

MovieNight: command not found #54

Closed daicain closed 5 years ago

daicain commented 5 years ago

I followed the simple guide on how to install MovieNight and when I went to start the server, I got **

MovieNight: command not found

**

joeyak commented 5 years ago

Could you give us some more information about your operating system and the output of go get -u -v github.com/zorchenhimer/MovieNight. Also check if your GOPATH is in your path.

I ran the command on a Windows 10 machine after deleting both the executable in GOPATH\bin and the directory GOPATH\src\github.com\zorchenhimer\MovieNight

daicain commented 5 years ago

Oh Sorry I am running this on Ubuntu 18 x64

zorchenhimer commented 5 years ago

It sounds like Go's bin directory isn't in your $PATH. Do either of these work for you?

$ cd $HOME/go/bin
$ ./MovieNight

or

$ cd $GOPATH/bin
$ ./MovieNight
zorchenhimer commented 5 years ago

This should be fixed with the recent Go module updates.