听说最近Python已被纳入小学生的课程了,作为一个资深搞技术的人,不会写python,简直焦虑无比,大概这就叫中年危机吧,那么,既然小学生都可以学,就放下姿态,也来学着写写吧,毕竟有一技之长还可以讨口饭吃。
嘿喂狗~~~
Python安装
Python官网:https://www.python.org/
Python文档下载地址:https://www.python.org/doc/
以下是各个平台安装包的下载地址:
选择自己要安装的平台,我也是傻,不知道Mac自带Python2.7,所以又装了一遍Python3.6,然后发现居然是可以完美兼容的,
安装python3
Mac的brew真的也是相当好用,使用homebrew安装,方便快捷好管理,棒棒哒
brew install python3
安装好后检查是否安装成功,输入python3看是否能进入python3命令行,可以看到我这里安装的python3的版本是3.6.5
$python3
Python 3.6.5 (default, Apr 25 2018, 14:23:58)
[GCC 4.2.1 Compatible Apple LLVM 9.1.0 (clang-902.0.39.1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
那么怎么兼容python2呢,输入python2,进入python2命令行,相当简单有木有~
$python2
Python 2.7.15 (default, May 1 2018, 16:44:08)
[GCC 4.2.1 Compatible Apple LLVM 9.1.0 (clang-902.0.39.1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
就可以在随意切换了,像魔鬼的步伐~~
同样的,要使用python的pip等工具,只需要区分pip2和pip3就可以完美解决。
$pip3
Usage:
pip3 <command> [options]
windows版本可参考以下链接https://www.cnblogs.com/yyds/p/6080826.html,比mac稍微麻烦点的就是要配置环境变量。
来源:oschina
链接:https://my.oschina.net/u/4264746/blog/3960754