Mac Python Version 변경
Mac Python Version 변경
MAC 기본 설정 되어있는 Python version 변경
1
2
3
4
5
6
```bash
# 심볼릭 링크 해제
brew unlink python
# 심볼릭 링크 연결
brew link --force python@{version name}
```
This post is licensed under CC BY 4.0 by the author.
1
2
3
4
5
6
```bash
# 심볼릭 링크 해제
brew unlink python
# 심볼릭 링크 연결
brew link --force python@{version name}
```