A python beginner aims to build the environment necessary for earth science researchers.
Reinstall according to this article. https://qiita.com/opankopan/items/5171116b1727c3907e86
This time I installed ** python3.7 **. (Because python-cdo doesn't support python3.8 yet.) https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh
Reset the PATH.
~/.bashrc
export PATH=/home/[myname]/local/anaconda3/bin:${PATH}
python
conda create -n [name] python=3.7.4
Switching the environment
python
conda activate [name] #Start-up
conda deactivate #End
If you want to change your name https://qiita.com/TyaoiB/items/b858430c289767cb04be
If you install with conda install -c conda-forge
, it will find a suitable version. If you add the option -y
, it will be installed at once.
I followed the following. https://www.iwass.co.jp/column/column-12.html
Recommended Posts