查看解释器中的python版本
import sys
print(sys.executable)
print(sys.path) # 更具体
查看jupyter notebook中shell的版本信息
! which python
类似命令whereis python
标签:解释器,shell,jupyter,python,sys,print From: https://www.cnblogs.com/qiuye98/p/which-python.html
!
符号相当于将命令传给shell执行,开了一个新的线程,所有使用cd什么命令,对当前notebook环境是没有影响和作用的。