typora/daliy_note/11.6/安装python2.md

11 lines
148 B
Markdown
Raw Permalink Normal View History

2024-12-11 21:48:55 -05:00
### mac 安装
```bash
brew install pyenv
pyenv install 2.7.18
export PATH="$(pyenv root)/shims:${PATH}"
pyenv global 2.7.18
python --version
```