I am working on a server on which I do not have root/admin privileges, so I'm attempting to do a local install of SomaticSniper in my work directory. I seem to be able to obtain the files from github, which creates a somatic-sniper directory with, among other things, a build-common subdirectory.
The documentation instructs me to do the following
mkdir somatic-sniper/build cd somatic-sniper/build cmake ../ make deps make -j make test
First, there is already a build directory there. Second, there are cmake subdirectories, so cmake is not treated as a command, therefore make fails.
I attempted the same within somatic-sniper/build-common (the rest of the commands the same) and wind up with the same errors, e.g. cmake command not found, etc. Please advise as to what I am doing incorrectly.
Thank you
I'm assuming your actual command sequence is:
Yes, that is correct.