In my development environment I am trying to install some packages from an artifactory private repository to my conda environment. I'm trying to explicitly use only the .tar.bz2 file instead of .conda packages as I keep getting a 404 error when trying to pull .conda packages. However, when I'm trying to create an environment, conda is still trying to use .conda packages instead of its .tar.bz2 equivalent.
I've tried modifying the .condarc so that I've set use_only_tar_bz2 to true. When I ran conda config --show, it shows that use_only_tar_bz2 flag has been set to true.
When I run "conda search" against the .conda packages I'm trying to install (_libgcc_mutex, libgcc-ng, libstdcss-ng), conda is able to find these packages in the artifactory remotes. However, when I try to install these I get a
CondaHTTPError: HTTP 404 NOT Found for url artifactory.remote.url
The conda version I have is 4.7.12. The conda-build version I have is 3.18.10.
I would expect that only the .tar.bz2 file gets pulled from Artifactory when running conda install. However, conda is throwing a 404 error trying to pull the .conda package instead of the .tar.bz2 file.