Conda - 环境配置

画图环境配置

新建环境名为 plot 的环境

1
conda create -n plot python=3.7.0

分别安装 xarray, proplot 等高级库

1
2
3
4
5
conda install scipy -y
conda install xarray -y
conda install geopandas -y
conda install -c conda-forge proplot -y
conda install -c conda-forge cartopy -y

安装 metpy

1
conda install -c conda-forge metpy

安装 cmaps

1
conda install -c conda-forge cmaps

深度学习环境配置

新建环境名为 deepl 的环境

1
conda create -n deepl python=3.7.0

分别安装 xarray 等库

1
2
conda install scipy -y
conda install xarray -y

安装 scikit-learn

1
conda install -c conda-forge scikit-learn

安装 PyTorch

访问 PyTorch 官网选择对应版本的 pytorch

1
conda install pytorch torchvision torchaudio cpuonly -c pytorch

安装 zennit

1
pip install zennit

安装 optuna

1
conda install -c conda-forge optuna

End