python 中快速定位到三方包所在路徑

kingron發表於2024-07-03

方法

使用如下命令可列印當前 python 所使用的三方包路徑:

python -m site

或:

python -c 'import site; print(site.getsitepackages())'

參考

  1. site --- Site-specific configuration hook — Python 3.12.4 文件

相關文章