Installed but vt: command not found
hugonh opened this issue · 4 comments
hugonh commented
mgmacias95 commented
Syuukakou commented
I have the same problem, and the output of make install
is shown below:
syuu@syuu-ra:~/Tool/vt-cli$ make install
go install -ldflags "-X github.com/VirusTotal/vt-cli/cmd.Version=" github.com/VirusTotal/vt-cli/vt
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/spf13/cobra v1.1.3
go: downloading github.com/spf13/viper v1.7.1
go: downloading github.com/VirusTotal/vt-go v0.0.0-20210528074736-45bbe34cc8ab
go: downloading github.com/briandowns/spinner v1.7.0
go: downloading github.com/cavaliercoder/grab v2.0.0+incompatible
go: downloading github.com/dustin/go-humanize v1.0.0
go: downloading github.com/fatih/color v1.7.0
go: downloading github.com/gobwas/glob v0.2.3
go: downloading github.com/gosuri/uitable v0.0.3
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213
go: downloading github.com/plusvic/go-ansi v0.0.0-20180516115420-9879244c4340
go: downloading github.com/fsnotify/fsnotify v1.4.7
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading github.com/magiconair/properties v1.8.1
go: downloading github.com/mitchellh/mapstructure v1.1.2
go: downloading github.com/pelletier/go-toml v1.6.0
go: downloading github.com/spf13/afero v1.2.2
go: downloading github.com/spf13/cast v1.3.0
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: downloading github.com/subosito/gotenv v1.2.0
go: downloading gopkg.in/ini.v1 v1.51.0
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/mattn/go-colorable v0.1.2
go: downloading github.com/mattn/go-isatty v0.0.10
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.0
go: downloading golang.org/x/sys v0.0.0-20191028164358-195ce5e7f934
go: downloading github.com/thedevsaddam/gojsonq/v2 v2.5.2
go: downloading golang.org/x/text v0.3.2
go: downloading github.com/russross/blackfriday/v2 v2.0.1
go: downloading github.com/mattn/go-runewidth v0.0.5
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
- Go version
go version go1.17.1 linux/amd64
plusvic commented
That's probably because the path when Go puts the installed programs are not in your PATH environment variable. This should solve your problem:
export PATH=$PATH:`go env GOPATH`/bin
mgmacias95 commented
Closing, assuming the issue was fixed. Please reopen if you need further assistance :).