Unable to set default python version to python3 in ubuntu

后端 未结 19 1757
遥遥无期
遥遥无期 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:03

    As it says, update-alternatives --install needs and arguments.

    You have link (/usr/bin/python), name (python), and path (/usr/bin/python3), you're missing priority.

    update-alternatives --help says:

    is an integer; options with higher numbers have higher priority in automatic mode.

    So just put a 100 or something at the end

提交回复
热议问题