It seems you have the wrong boost package installed by conda
- List of installed conda boost packages in the current
conda list | grep boost conda list | grep boost , you may see the wrong version (not 1.61.0) - Search for the required version of
anaconda search -t conda boost | grep 1.61.0 anaconda search -t conda boost | grep 1.61.0 - Install the correct version with the same name
conda install boost -c CHANNEL_NAME
In my case, I also have conflicts with this post:
Linking packages ... CondaOSError: OS error: failed to link (src='/home/user/anaconda3/pkgs/icu-54.1-0/lib/icu/pkgdata.inc', dst='/home/user/anaconda3/envs/py3_graph/lib/icu/pkgdata.inc', type=3, error=FileExistsError(17, 'File exists'))
Removing the folder /home/user/anaconda3/envs/py3_graph/lib/icu helps me
source share