I created an environment on my local computer with Anaconda. After that, I created yml file for the environment with conda env export > environment.yml
. I tried creating the same environment with yml file on CentOS server by conda env create -f environment.yml
. Then I got the following error:
Using Anaconda API: https://api.anaconda.org
Fetching package metadata .............
ResolvePackageNotFound:
- cartopy 0.17.0 py36h95120c7_1006
I did some googling and tried moving the line under pip
but then similar error popped up for different library. How can I solve this issue?