Setting python3.2 as default instead of python2.7 on Mac OSX Lion 10.7.5

后端 未结 3 518
有刺的猬
有刺的猬 2020-12-10 16:27

Currently running Mac OS X Lion 10.7.5 , and it has python2.7 as default. In the terminal, i type \'python\' and it automatically pulls up python2.7. I don\'t want that.

相关标签:
3条回答
  • 2020-12-10 17:01

    The safest way is to set an alias in ~/.bashrc:

     alias python=python3
    

    That way you avoid breaking things for scripts relaying on python being python2.

    0 讨论(0)
  • 2020-12-10 17:13

    If you have python 2 and 3 on brew. Following worked for me.

    brew unlink python@2

    brew link python@3 (if not yet linked)

    0 讨论(0)
  • 2020-12-10 17:21

    You could edit the default python path and point it to python3.2

    Open up ~/.bash_profile in an editor and edit it so it looks like

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

    0 讨论(0)
提交回复
热议问题