Common issues
Last updated
Last updated
- StackOverFlow by 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: Doing the "Install necessary packages" portion of this guide got it working for my Mac/VMWare/Kali setup: