前沿
对于iOS开发不要随便拆卸系统自带的Python,因为有很多 library 还是使用 Python2.7。
1 安装Xcode
1.1 App Store 搜索Xcode 并安装
1.2 安装 Xcode command line tool
1.2.1 打开命令行terminal工具
1
2
3
|
control + space 输入terminal 回车 |
1.2.2 安装Xcode command line tool
1
|
xcode - select - - install |
2 安装套件管理工具 Homebrew
2.1 安装 Homebrew
1
|
/ usr / bin / ruby - e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
2.2 查看是否安装成功
1
|
brew doctor |
3 安装Python
1
|
brew install python |
4 设置路径(可选)
如果不设置路径,则使用python的话,会默认用系统的。(这个没有具体执行,所以这个需要自己尝试)
1
2
|
## 修改/etc/paths,把/usr/local/bin 移到上面去 sudo vim / etc / paths |
拓展:
查看当前path是什么。
PATH 的用途:
告诉系統,我们的brew在哪里。会从上往下查找。
1
|
echo $PAHTH |
5 确认安装
1
2
3
4
|
/ / 系统自带的python2. 7 ,目录为 / usr / bin / python which python / / brew安装的python3. 4 ,目录为 / usr / local / bin / python3 which python3 |
6 使用
未执行操作4的情况(推荐)
1
2
3
4
|
/ / 系统自带的 python a.py / / brew安装的 python3 a.py |
执行操作4的情况
1
2
3
4
|
/ / 系统自带的 / usr / bin / python a.py / / brew安装的 python a.py |
7 安装pip
- 安装Python2.7以上版本,会自动带pip。
- 系统自带的python没有pip,只有easy_install
1
2
|
/ / 给系统的python安装pip easy_install pip |
使用pip
1
2
3
4
|
/ / 系统自带的 pip - - version / / brew安装的 pip3 - - version |
总结
以上所述是小编给大家介绍的mac系统安装Python3初体验,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://blog.csdn.net/u010828718/article/details/70257622