Installing Local Requirements on Mac ARM (ssdeep issues) #356
phutelmyer
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you would like to install the requirements locally, and are using a Mac ARM build, you may get an error while installing
ssdeep
usingpip install -r src/python/requirements.txt
. I've had luck running this:1: Install ssdeep with homebrew:
brew install ssdeep
2: List homebrew directories for ssdeep brew ls ssdeep This produces output like
3: Set the LDFLAGS environment variable to the path of the ssdeep lib directory from the output in step 2.
4: Set the C_INCLUDE_PATH environment variable to the path of the ssdeep include directory from the output in step 2.
5: Install ssdeep from PyPi
Note: Users may also need to perform this link prior to installing ssdeep:
Beta Was this translation helpful? Give feedback.
All reactions