kpcyrd / sn0int

Semi-automatic OSINT framework and package manager
https://sn0int.readthedocs.io/
GNU General Public License v3.0
1.92k stars 177 forks source link

Failed building of sn0int #165

Closed DanieleCalzetti closed 4 years ago

DanieleCalzetti commented 4 years ago

Type of error

I am trying to reinstall Sn0int, when i type cargo install -f --path .

It returns the error displayed in the picture.

sn0int_error

I installed rust+cargo via rustup as indicated in the guide and I checked if cargo was already installed via packet manager but it doesn't seems installed. I tried to type:

apt-get remove cargo

It returned

Package 'cargo' is not installed, so not removed

Versions

kpcyrd commented 4 years ago

hey,

apt install pkg-config libsodium-dev

should fix this

DanieleCalzetti commented 4 years ago

Ok, that really worked well, thank you very much. Now I have another issue. I attach the screenshot.

A question to understand, it is related to some missing libraries?

What can I study to understand it a little bit better? I am noob but I'd like to learn more and to understand more such issues.

image

kpcyrd commented 4 years ago

You're also missing libseccomp:

apt install libseccomp-dev

The relevant line is = note: /usr/bin/ld: cannot find -lseccomp.

DanieleCalzetti commented 4 years ago

Well thanks! It works! I close the issue.