I was wondering if anyone can help me install deemix?
python3 -m pip install setuptools wheel --user when using this command, I get an error in terminal.
" WARNING: The script wheel is installed in '/home/kalessin/.local/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed wheel-0.35.1
WARNING: You are using pip version 19.2.3, however version 20.2.3 is available.
You should consider upgrading via the 'pip install --upgrade pip' command."

Also when trying to use the pip or pip3 command I get an /usr/bin/pip or pip3 cannot be found.

algent It is recommended to use virtual environments.
For example I did this and didn't get any warning.

mkdir Pyenv && cd Pyenv
virtualenv -p /usr/bin/python3.7 deemix
cd deemix
source bin/activate
pip install deemix