现在以json为数据传输格式的RESTful接口非常流行。为调试这样的接口,一个常用的办法是使用curl命令: curl http://somehost.com/some-restful-api 对于返回的json字符串,一般在服务端不加处理的情况下,都是没有任何’\t’和’\n’的。为了方便查看,在bash上可以简单地对它进行格式化: curl http://somehost.com/some-restful-api | python…
July 12, 2018
Python: 转换Python默认版本, 设置Python3为默认版本, How to make ‘python’ program command execute Python 3?
最简单的方法就是直接修改 ~/.bashrc
或者 ~/.bash_aliases
文件,添加如下代码:
alias python=python3
然后运行
source ~/.bash_aliases #或者 #source ~/.bashrc
再检查一下版本:
$ python --version Python 2.7.6 $ python3 --version Python 3.4.3 $ alias python=python3 $ python --version Python 3.4.3
想要取消就用:
$ unalias python $ python --version Python 2.7.6
本文:Python: 转换Python默认版本, 设置Python3为默认版本, How to make ‘python’ program command execute Python 3?
2 Comments