How do I find the location of my site-packages directory?
|
|
|
From "How to Install Django" documentation (though this is useful to more than just Django installation) - execute the following from the shell:
Formatted for readability (rather than use as a one-liner), that looks like the following:
|
|||||||||||||||||||||
|
|
For Ubuntu,
...is not correct. It will point you to This folder only contains packages your operating system has automatically installed for programs to run. On ubuntu, the site-packages folder that contains packages installed via setup_tools\easy_install\pip will be in The second folder is probably the more useful one if the use case is related to installation or reading source code. If you do not use Ubuntu, you are probably safe copy-pasting the first code box into the terminal. |
|||||
|
|
Coming late to the party, though perhaps this is the correct answer?
(or just first item with |
|||
|
|
As others have noted,
...though the default
(it also adds That said, what's the context? You shouldn't be messing with your |
|||
|
|
|
A side-note: The proposed solution (distutils.sysconfig.get_python_lib()) does not work when there is more than one site-packages directory (as recommended by this article). It will only return the main site-packages directory. Alas, I have no better solution either. Python doesn't seem to keep track of site-packages directories, just the packages within them. |
|||||||||||
|
|
All the answers (or: the same answer repeated over and over) are inadequate. What you want to do is this:
The final line shows you the installation dir. Works on Ubuntu, whereas the above ones don't. Don't ask me about windows or other dists, but since it's the exact same dir that easy_install uses by default, it's probably correct everywhere where easy_install works (so, everywhere, even macs). Have fun. Note: original code has many swearwords in it. |
|||
|
|
|
An additional note to the |
|||
|
|
|
Let's say you have installed the package 'django'. import it and type in dir(django). It will show you, all the functions and attributes with that module. Type in the python interpreter -
You can do the same thing if you have installed mercurial. This is for Snow Leopard. But I think it should work in general as well. |
||||
|
|
This works for me. It will get you both dist-packages and site-packages folders. If the folder is not on Python's path, it won't be doing you much good anyway.
Output (Ubuntu installation):
|
|||||
|