python安装的系统包在哪里

时间:2014-11-01 14:49:14

标签: python python-2.7 ubuntu ubuntu-14.04

例如,当我做

sudo apt-get install python-scipy

系统安装scipy在哪里?我没有在/opt/bitnami/python/lib/python2.7/site-packages

中找到它
which python 
/opt/bitnami/python/bin/python/

那么它在哪里?

2 个答案:

答案 0 :(得分:1)

您可以使用dpkg -L命令知道文件的安装位置:

dpkg -L python-scipy

答案 1 :(得分:0)

这应该足够了:python -c 'import scipy; print(scipy.__file__)'