4๐
If you already have a .condarc file in your root folder. Then update the file by running this command.
conda config --set ssl_verify false
If you do not have a .condarc file, then create one and then run the above command. I have added both the commands below.
conda config --add channels conda-forge
conda config --set ssl_verify false
๐คSnehal Nair
1๐
Instead of using command prompt use Anaconda Prompt as administator.
run the same command there.
I also faced same issue with command prompt.
๐คHemant
- [Django]-How do I move project folders in PyCharm Project View?
- [Django]-Django posts and responses
- [Django]-Best Practice for following Subversion repository Trunk: Git (Mirror), Git-Svn, Subversion?
- [Django]-Django one-to-one left join is null?
- [Django]-Python logging decorator for views
- [Django]-Django sites framework and Heroku
- [Django]-Can a Django view receive a list as parameter?
- [Django]-Django count per column
Source:stackexchange.com