Path

博主电脑安装Python时以默认路径安装的Python

Python 安装位置

C:\Users\Administrator\AppData\Local\Programs\Python\Python37

  • 包含 python.exe 也就是我们常用在终端中打开Python的命令

Python 自带脚本的位置

C:\Users\Administrator\AppData\Local\Programs\Python\Python37\Scripts

  • 包含 pip.exe, easyinstall.exe Python包管理的位置

pip 安装的脚本的位置

C:\Users\Administrator\AppData\Roaming\Python\Python37

  • 这个文件夹下有两个文件夹 site-packages, Scripts

site-packages

  • 安装的库的位置 比如 ipython 会在此目录下有一个文件夹

Scripts

  • 安装的可执行脚本的位置,比如 ipython.exe, jupter.exe

总结

  • 所以要想在终端下使用Python,就需要添加三个位置,即三个有可执行文件的目录
    • C:\Users\Administrator\AppData\Roaming\Python\Python37\Scripts
    • C:\Users\Administrator\AppData\Local\Programs\Python\Python37\Scripts
    • C:\Users\Administrator\AppData\Local\Programs\Python\Python37

查看安装的第三方模块的位置

用包管理器 pip 查看

pip show ipython # pip show module_name

使用 sys 模块查看

import sys

for path in sys.path:
    print(path)

使用 sys.modules 函数查看

import sys

for k in sys.modules.items():
    print(k)