怎么让mac终端输入python默认打开python3

  1. 1. 终端打开.bash_profile文件
  2. sudo open ~/.bash_profile
  3. 2. 添加别名->最终文件
  4. alias python="/usr/local/bin/python3"
  5. 3. 终端中重新读取.bash_profile文件
  6. source ~/.bash_profile

⚠️ Tip: /usr/local/bin/python3 可以根据 which python3 找到python3安装路径

如何查看Python安装目录

  1. #方式1
  2. >>> python
  3. >>> import sys
  4. >>> sys.path
  5. #方式2
  6. 在终端中输入python -V,仍然显示版本号是2.7
  7. which python
  8. where python

查看安装版本

  1. python -V

安装pip

  1. curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
  2. python2.7 get-pip.py