Hey folks! I run Mint 18.3 and I have both Pyhon3.5 and Python3.6 since many devs got crazy with fstring syntactic sugar.
How to deal with Pip module management? The 3.5 version (which is python3
) is fine and can import everything as usual, but the 3.6 version (which is python3.6
) cannot.
Suggestions?
EDIT: thanks all ^^
I ended up using:
$> python3.6 -m pip install {module I need}
Try this: https://stackoverflow.com/a/4910393
On Void Linux,
pip
packages are installed to~/.local/lib/python3.8/site-packages
and/usr/lib/python3.8/site-packages
. On Mint I suppose it should be the same or at least similar so that’s how pip packages are separted by version number.