[ubuntu]安装并使用python 3.6及与2.7的切换,ubuntupython,参考自:https:
[ubuntu]安装并使用python 3.6及与2.7的切换,ubuntupython,参考自:https:
参考自:https://blog.csdn.net/qq_15695761/article/details/77502788
当前使用ubuntu14.04
1.添加python3.6安装包,并安装(也可以去官网下载安装包)
[html] view plain copy<codeclass="language-python">sudoapt-getinstallsoftware-properties-common</code>sudo add-apt-repository ppa:jonathonf/python-3.6sudo apt-get updatesudo apt-get install python3.62.用which python查看默认安装python的目录cd /usr/binsudo rm python
3.用which python3.6查看安装python3.6的目录
4.用python3.6替换python2.7
sudo ln -s /usr/local/bin/python3.6 /usr/bin/python
这时在终端中输入python可看到:
FINAL:切换到2.7,同理。
[ubuntu]安装并使用python 3.6及与2.7的切换
相关内容
- python--easygui,,1.msgboxim
- 深度学习 GPU环境 Ubuntu 16.04 + Nvidia GTX 1080 + Python 3.6 +
- python locust 性能测试:locust参数-保证并发测试数据唯一
- Python Falling back to the 'python' engine because th
- 【每日道代码题001】- PYTHON基础复习,001python,问题001
- python学习之----用虚拟环境保存库文件,python----,如果你
- 【Python】self的用法扫盲,pythonself扫盲,在Python中,我
- python出现关于模块(i18n)的不能使用的解决方法,py
- python DRF获取参数介绍,pythondrf获取参数,DRF获取参数的
- Python3——局部变量和全局变量,python3全局变量,在函数
评论关闭