Python开发环境01 Mac平台命令行方式
初学者可以采用命令行的方式来学习,这样上手比较快一些。
一、首先需要安装HomeBrew
Homebrew是一款Mac OS平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。简单的一条指令,就可以实现包管理,而不用你关心各种依赖和文件路径的情况,十分方便快捷。
1、安装
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)";
2、更新速度慢的问题
(1) 修改dns
列举所有网络连接方式
networksetup -listallnetworkservices
给指定的网络连接设定DNS
networksetup -setdnsservers Wi-Fi 8.8.8.8
(2) 替换源
替换brew.git:
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
替换homebrew-core.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
3、重置源
重置brew.git:
cd "$(brew --repo)"
git remote set-url origin https://github.com/Homebrew/brew.git
重置homebrew-core.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://github.com/Homebrew/homebrew-core.git
4、部分文件无法下载的问题
原因:http.postBuffer默认上限为1M。
解决办法:在git的配置里将http.postBuffer变量改大一些即可,比如将上限设为500M:
git config --global http.postBuffer 524288000
二、命令行终端推荐使用iTerm2
从 https://www.iterm2.com/ 直接下载安装即可。
三、Mac平台安装Python3
brew install python@3
在终端命令行中,直接输入python3即可进入开发环境。
如有疑问欢迎随时沟通。