$ ls -l /System/Library/Frameworks/Python.framework/Versions/
lrwxr-xr-x 1 root wheel 3B 6 5 2019 Current -> 2.7
lrwxr-xr-x 1 root wheel 3B 6 5 2019 A -> 2.7
lrwxr-xr-x 1 root wheel 3B 6 5 2019 Current -> 2.7
lrwxr-xr-x 1 root wheel 3B 6 5 2019 A -> 2.7
$ ln -s /System/Library/Frameworks/Python.framework/Versions/3.8/bin/python3 /usr/local/bin/python
$ python --version
Python 3.8.1
$ ln -sf /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 /usr/local/bin/python
$ python -m pip install numpy
$ python -m pip install virtualenv
$ python -m venv venv
$ ln -sf /Users/yourname/path/to/project/venv/bin/python /usr/local/bin/python
标签: 站长圈