Unable to set default python version to python3 in ubuntu

后端 未结 19 1573
遥遥无期
遥遥无期 2020-11-28 01:38

I was trying to set default python version to python3 in Ubuntu 16.04. By default it is python2 (2.7). I followed below steps :

相关标签:
19条回答
  • 2020-11-28 02:05

    You didn't include the priority argument

    sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 5
    

    You can replace 5 with any priority you want. A higher priority alternative takes precedence over lower priority.

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