I just installed a Python app using pip2 install pyriscope --user and now I need to find the installed files, since it seems like the app is built to use the python assuming it's python2, when on my system it's actually python3.
Where do I find the location of --user-installed pip packages?
Thanks!
1 Answer
In the case of Python 2.7, the location, which --user installs the package to is:
~/.local/lib/python2.7/site-packages/and executables in:
~/.local/bin/ 1