0

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?

1 Answers1

0

try:- which python3 command and locate python first
if its mac, it must be in below directory:- /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages

jits_on_moon
  • 827
  • 6
  • 10