elisescu / tty-share

Share your linux or osx terminal over the Internet.
https://tty-share.com/
MIT License
806 stars 87 forks source link

Compile error #4

Closed wallace11 closed 5 years ago

wallace11 commented 5 years ago

Running make out/tty-share results in:

tty-share/pty_master.go:10:2: cannot find package "github.com/elisescu/pty" in any of:
        /usr/lib/go/src/github.com/elisescu/pty (from $GOROOT)
tty-share/main.go:14:2: cannot find package "github.com/elisescu/tty-share/common" in any of:
        /usr/lib/go/src/github.com/elisescu/tty-share/common (from $GOROOT)

I could probably fiddle with it to make it run but it looks like there's a step missing in the makefile.

andres-ortiz commented 5 years ago

Hello,

go get github.com/elisescu/pty
go get github.com/elisescu/tty-share/common
wallace11 commented 5 years ago

That fixed the problem! Thanks!

Maybe it'd be a good idea to add something to the readme?