例如,当我做
时sudo apt-get install python-scipy
系统安装scipy在哪里?我没有在/opt/bitnami/python/lib/python2.7/site-packages
which python
/opt/bitnami/python/bin/python/
那么它在哪里?
答案 0 :(得分:1)
您可以使用dpkg -L
命令知道文件的安装位置:
dpkg -L python-scipy
答案 1 :(得分:0)
这应该足够了:python -c 'import scipy; print(scipy.__file__)'
。