mac python环境安装

  1. 安装anaconda,建议python3.6
https://www.anaconda.com/download/
  1. 配置anaconda
#配置anaconda中国的源,加快速度
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/  
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/  
conda config --set show_channel_urls yes 
  1. 安装常用python包
conda install caffe  
conda install keras  
pip install cython scipy tensorflow jieba gensim fasttext flask gunicorn w3lib python-opencv
  1. 验证keras
#命令行中输入python,显示应该是3.6版本,输入
import keras
#不报错就代表安装没毛病啦

你可能感兴趣的:(mac python环境安装)