"Hands-on learning deep learning" learning record 00: Environment Configuration

Environment Configuration "hands-on learning depth study" points to note

1, the official website to download the corresponding version of Anaconda, check Add PATH Note installation

2, the code corresponding to the terminal folder is opened, to open the input Jupyter notebook notebook

3, Jupyter notebook you want to open their own virtual environment, you need to install

  conda install nb_conda

4, the code book resources directly to that folder, conda activate gluon

5, open the virtual terminal environment

  conda install jupyter

6, open the virtual terminal environment

  conda install mxnet

7, if slow download:

  conda domestic source added

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --set show_channel_urls yes

  conda exchange for the default source

conda config --remove-key channels

  (Files that have changed are located in the directory ~ / .condarc (Linux / Mac) or C: \ Users \ username \ .condarc (Windows))

   See also: https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/

 

Guess you like

Origin www.cnblogs.com/RaspberryFarmer/p/11330556.html