How do I find the location of my Python site-packages directory?

前端 未结 21 2695
梦谈多话
梦谈多话 2020-11-22 03:06

How do I find the location of my site-packages directory?

21条回答
  •  悲&欢浪女
    2020-11-22 03:31

    You should try this command to determine pip's install location

    Python 2

    pip show six | grep "Location:" | cut -d " " -f2
    

    Python 3

    pip3 show six | grep "Location:" | cut -d " " -f2
    

提交回复
热议问题