To install rioxarray using conda, it is recommended to use the conda-forge channel. It is best practice to install the package into a new environment rather than your base environment to ensure stability and easier debugging.
Warning: Avoid using pip install inside a conda environment if possible. If a package is missing from conda-forge, consider submitting a recipe to the conda-forge community instead.
conda config --prepend channels conda-forge
conda config --set channel_priority strict
conda create -n rioxarray_env rioxarray
conda activate rioxarray_env