我是靠谱客的博主 失眠路灯,最近开发中收集的这篇文章主要介绍ubuntu中python2换成python3.5,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

linux中python2换成python3


用的ubuntu 系统中自带了python2,但是我希望用上python3.5,设置步骤如下
steps:
1,
$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 # 添加Python2可选项,优先级为2
$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1 #添加Python3可选项,优先级为1

2,check the config of the python
$ sudo update-alternatives --config python

会有结果显示
Selection Path Priority Status
------------------------------------------------------------**

  • 0 /usr/bin/python2.7 2 auto mode
    1 /usr/bin/python2.7 2 manual mode
    2 /usr/bin/python3.5 1 manual mode
    Press to keep the current choice[*], or type selection number: 2

注意看结果显示,带星号的表示当前的系统python环境,因此输入selection number为2,enter,即可完成换编译环境。

最后

以上就是失眠路灯为你收集整理的ubuntu中python2换成python3.5的全部内容,希望文章能够帮你解决ubuntu中python2换成python3.5所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部