conda安装Mxnet(cpu)

mkdir gluon-tutorials && cd gluon-tutorials
curl https://zh.gluon.ai/gluon_tutorials_zh.tar.gz -o tutorials.tar.gz

tar -xzvf tutorials.tar.gz && rm tutorials.tar.gz

# 优先使用清华conda镜像
conda config --prepend channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda env update -f environment.yml
source activate gluon # 注意Windows下不需要 source
 
  

然后安装notedown,运行Jupyter并加载notedown插件:

pip install https://github.com/mli/notedown/tarball/master
jupyter notebook --NotebookApp.contents_manager_class='notedown.NotedownContentsManager'

你可能感兴趣的:(环境搭建)