美文网首页
mac 下常用路径记录

mac 下常用路径记录

作者: 顶宝麻麻 | 来源:发表于2020-05-28 20:28 被阅读0次

1. 如何查看python 的site-packages路径

在python3 命令行下执行:

**MacBook-Air:bin **$ python3
Python 3.7.3 (default, Mar 27 2019, 09:23:15) 
[Clang 10.0.1 (clang-1001.0.46.3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> print(sys.path)
['', '/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python37.zip', '/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7', '/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload', '/usr/local/lib/python3.7/site-packages']

相关文章

网友评论

      本文标题:mac 下常用路径记录

      本文链接:https://www.haomeiwen.com/subject/wzkzahtx.html