pip install matplotlib
安装后,matplotlib 的编译二进制文件位于哪里?
答案1
一般情况下,如果设置了此变量,则位于 中的第一个路径$PYTHONPATH
。如果未设置,则位于path/to/current/python/lib/python2.7/dist-packages
。
您可以通过--root
、--target
或--user
pip 选项指定其他安装位置。使用 --user 选项时,您应该事先设置PYTHONUSERBASE
系统变量。
如果您使用的是系统版本的 pip 和 python(通过系统打包管理器安装),则在系统路径中搜索。对于 Debian,它是/usr/lib/python2.7/dist-packages
。
没有像“matplotlib”这样的二进制文件,只有库文件。