目录
环境安装
系统安装与切换
安装与查看
macos系统,默认内置了 python
查看版本:python -V 或 python3 --version
查看安装路径:which python 或 which python3
或者python2 进入后 import sys 后 print sys.executable
python3 进入后 import sys 后 print(sys.executable)
python3安装,Welcome to Python.org 下载对应版本,安装即可。
最新版本可以二进制安装,历史版本需要源码安装。
源码安装3.10.14:
注意先查看是否安装了openssl,否则pip 时https使用问题
安装brew install open