Glam Prestige Journal

Bright entertainment trends with youth appeal.

I have been installing python modules using apt-get which works great using the console or launching files from the command line. However I am using Eclipse for easier organisation of files.

Eclipse doesn't automatically find new modules like terminal does, so I was wondering if there was a way of finding out the install path which an apt-get command uses?

I just realised that you can delete the python eclipse looks at and reconfigure it to fix my particular problem. It would still be useful for me to find the installation path though!

1 Answer

dpkg -L <package_name> will give you a list of all files in a package. Usually python packages install to /usr/lib/python/ (ie: /usr/lib/python2.7/).

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy