assetfinder icon indicating copy to clipboard operation
assetfinder copied to clipboard

Unable to install assetfinder

Open bumfuzzle33 opened this issue 2 years ago • 2 comments

I'm unable to install asset finder using the command go get -u github.com/tomnomnom/assetfinder says got get is deprecated so i tried go install github.com/tomnomnom/assetinder@latest. and seems like its doing nothing. Any help is appreciated and also please update the readme.md for installation.

bumfuzzle33 avatar Mar 12 '22 13:03 bumfuzzle33

go get commad is no longer supported

use go install instead

go install -v github.com/tomnomnom/assetfinder@latest

PR https://github.com/tomnomnom/assetfinder/pull/44 updates the readme file

felipecaon avatar Mar 16 '22 12:03 felipecaon

try this:

cd 

nano .bashrc

append the following lines at the bottom:

 export GOROOT=/usr/local/go
 export GOPATH=$HOME/go
 export PATH=$GOPATH/bin:$GOROOT/bin:$PATH

CTRL+S CTRL+X

Finally type following in terminal:

 source .bashrc

Try reinstalling assetfinder and you are done:)

bughunter-loffy avatar Mar 27 '23 12:03 bughunter-loffy