Created
February 4, 2021 04:58
-
-
Save turtlemonvh/d4c5b3d548a276f16d57c3d6da7cb13d to your computer and use it in GitHub Desktop.
Get the location of `easy-install.pth`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python -c 'import site; print(",".join(site.getsitepackages()))' | tr , '\n' | xargs -I {} find {} -name easy-install.pth |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is used by
pip install -e .
orpython setup.py develop
and can be annoying to find on platforms with anaconda and complex venv setups.