How to install KKpy¶
Preparation¶
Replace ${env_name} to the name of the conda environment you want
1 2 3 | $ conda create -n ${env_name} python=3.8
$ conda activate ${env_name}
$ conda install -c conda-forge cartopy arm_pyart gdal numba
|
Or you can just install in the existing environment (make sure you have a proper version of python)
1 2 | $ conda activate ${env_name}
$ conda install -c conda-forge cartopy arm_pyart gdal numba
|
Installation¶
Install released version (stable)
1 | $ pip install kkpy
|
Or latest version (unstable)
1 | $ pip install git+https://github.com/Kwonil-Kim/kkpy
|
Update¶
1 2 3 4 | $ # released version
$ pip install --upgrade kkpy
$ # latest version
$ pip install --upgrade git+https://github.com/Kwonil-Kim/kkpy
|
If you get dependency errors, you can try the following before pip install:
1 | $ conda install -c conda-forge cartopy arm_pyart gdal numba
|