In a Julia package of mine, I need to install the chelsea-cmip6 Python package for downloading climatic data.
The developer of the python package suggest to install it (in Python) using pip
.
I have tried with the Julia package “CondaPkg” and `CondaPkg.add(“chelsea-cmip6”), but I got an error “Cannot solve the request because of: No candidates were found for chelsa-cmip6 *.”
I know nothing about Conda, how can I check if this package is available in some Conda “channel” ? And how to install it otherwise, such that when a user of my package install the julia package, install also this dependency ?
In an older package I was using a build script, but I wanter if it is still the way to go…