mac安装anaconda配置环境(pip安装包加速)

一、苹果电脑安装anaconda

1、官网安装anaconda
mac安装anaconda配置环境(pip安装包加速)_第1张图片

安装完成后在Mac终端输入

conda --version

如果没有输出condo版本号,需要编辑路径。

2、打开Mac终端,输入

vim ~/.bash_profile   

打开bash_profile文件
点击i,进入insert模式,输入

 export PATH=/anaconda3/bin:$PATH   

点击Esc, 输入 :wq! ,保存退出编辑路径模式

3、关闭终端,再次打开终端,输入conda --version,会输出conda版本号。

二、anaconda新建环境

1、安装新环境

conda create -n tensorflow  python=3.8

2、激活新环境

source activate tensorflow

3、直接在终端打开jupyter
先要在anaconda里install jupytermac安装anaconda配置环境(pip安装包加速)_第2张图片
之后每次打开,可以在终端输入

python -m IPython notebook

就能直接打开jypyter了。

三、加速pip安装包速度

在加载python包的时候,无论是conda install还是pip install速度都比较慢。
除了增加conda的镜像源,还可以修改pip的安装源,是我尝试加速后效果最好的方法。

1、打开终端,输入

cd ~
mkdir .pip
cd .pip
vim pip.conf

2、更换国内的安全源,编辑pip.conf文件

[global]
index-url=http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

点击Esc, 输入:wq! ,保存退出编辑模式。

这时再pip install 新的包,速度会快到起飞。

mac安装anaconda配置环境(pip安装包加速)_第3张图片

你可能感兴趣的:(anaconda,python,mac,深度学习,linux)