Mac 安装Python3 和 pip3、pymysql

1、下载Python3 https://www.python.org/downloads/

选择Python3包安装,建议将本地python alias 为python3

2、安装pip,参考文档:https://pip.pypa.io/en/latest/installing/

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py

3、安装 pymysql

pip3 install pymysql

4、数据分析大家族numpy scipy matplotlib pandas

  • numpy: 数据结构基础
  • scipy: 强大的科学计算方法(矩阵分析等)
  • matplotlib:丰富的可视化套件
  • pandas: 基础数据分析套件
  • scikit-learn :强大的数据分析建模库
  • keras:人工神经网络

推荐使用这个命令安装,参考:https://scipy.org/install.html

pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
pip install --user scikit-learn

还有一个办法是安装集成包 https://www.anaconda.com/download/