[TOC]
Mac OS X 默认 Python 是 Python2.7,但是使用 Python3 比较多。因此这里介绍如何安装python3。
安装 command line tools
先检查是否安装过 command line tools
终端输入 :
xcode-select –p
若显示 / Applications/Xcode.app/Contents/Developer
,则已安装过。
否则终端输入:
xcode-select –install
进行安装
安装 Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
请注意这是一条语句,有可能因为超长而折行显示了。
验证安装 Homebrew
brew doctor1
安装 Python3
brew install python3
验证安装 Python3
python3 –version
更新pip3
python3安装成功后,默认就有了pip3。
pip3 install --upgrade pip
其他
pip3 是通用的 Python 包管理工具。提供了对 Python 包的查找、下载、安装、卸载的功能
常用命令为:
pip3 install requests
pip3 search xml
pip3 show beautifulsoup4
pip3 uninstall requests
网友评论