我正在尝试查找 Python3 的站点包在哪里
➜ ~ python3 -m site --user-site
/Users/macbookpro/Library/Python/3.6/lib/python/site-packages
➜ ~ cd /Users/macbookpro/Library/Python/3.6.
cd: no such file or directory: /Users/macbookpro/Library/Python/3.6.
但是,作为 Python2.7 它运行良好
➜ Python python2 -m site --user-site
/Users/macbookpro/Library/Python/2.7/lib/python/site-packages
➜ Python cd /Users/macbookpro/Library/Python/2.7
➜ 2.7
为什么 Python3 没有这样的站点包?