Common issues
pip installs packages successfully, but executables not found from command line - StackOverFlow by James Hibbard The problem on Linux is that pip install ... drops scripts into ~/.local/bin and this is not on the default Debian/Ubuntu $PATH.
Here's a GitHub issue going into more detail: https://github.com/pypa/pip/issues/3813
To fix, just add ~/.local/bin to your $PATH, for example by adding the following line to your .bashrc file:
export PATH="$HOME/.local/bin:$PATH"
---
In Linux, run "dpkg --print-architecture" to find out what your hardware is.If it's arm64, you can't run x86 binaries.
See: https://www.reddit.com/r/mac/comments/180x8yp/kali_linux_vm_wont_run_binary_m1_macbook_pro/ Doing the "Install necessary packages" portion of this guide got it working for my Mac/VMWare/Kali setup: https://www.kali.org/docs/arm/x86-on-arm/
Last updated