zoukankan      html  css  js  c++  java
  • mac终端输入python默认打开python3

    *** 1. 终端打开~/.bash_profile文件 ***

    open ~/.bash_profile

    *** 2. 添加以下内容到.bash_profile文件 ***

    # Setting PATH for Python 3.5

    PATH="/Library/Frameworks/Python.framework/Versions/3.5/bin:${PATH}"

    export   PATH

    *** 3. 添加别名.bash_profile文件 ***

    alias python="/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5"

    *** 4. 终端中重新读取.bash_profile文件 ***

    source ~/.bash_profile

         此时,在终端中输入python,应该就是python3的环境了。 

         注意:添加时,路径的双引号( 因为这个问题浪费几个小时,不知道mac的输入法怎么回事)。

    原文:https://blog.csdn.net/monkey7777/article/details/52295611

  • 相关阅读:
    投产包错误的思考
    Oracle----用户操作
    3.27 学习记录
    3.26 学习记录
    3.25 学习记录
    3.24 学习记录
    3. 23构建之法读后感
    3.22 学习记录
    3. 21学习记录
    3.20 学习记录
  • 原文地址:https://www.cnblogs.com/brianlai/p/10492849.html
Copyright © 2011-2022 走看看