I am trying to find where is the site-package for 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.
However, as Python2.7 it works well
➜ 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
Why there is no such site-package for Python3?