Issue
I am trying to run a program; here is the link, and I'm stuck in the second step. I am new in Raspberry Pi and Python.
conda create -n ears python=3.6
I am trying to run this command line but it gives me:
attribute =error: sslerror object has no attribute message
I'm using Python 3.4 version. I also tried conda create -n ears python=3.4
which gives the same error.
Solution
try this:
conda config --set ssl_verify false
Answered By - user11471261