I can not use the conda utility anymore. I use it regularly since years but lately, since I installed the python module scp
(with the command conda instal
thank you, that works ! in case the link grows old, here is the simplified copy:
Replace the function 'should_bypass_proxies_patched' with :
def should_bypass_proxies_patched(should_bypass_proxies_func, url, no_proxy=None):
if url.startswith("file://"):
return True
try:
return should_bypass_proxies_func(url, no_proxy)
except TypeError:
return should_bypass_proxies_func(url)
I have the same issue, I just fixed it by
1.uninstall the anaconda and download latest version
2.create a new environment and try installing packages in that environment