Tag Archives: Anaconda Error

How to Solve Anaconda Error (Three Errors to Solve)

1. ssl.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:600)
Solution:
Turn off ssl verification and execute the following command
conda config –set ssl_verify false

 

2. After installing miniconda3 on ARM-Linux system, conda create -n clock python=3.5.2 can’t find python
Fetching package metadata:…
Error: No packages found in current Linux-armv7l channels matching: python 3.5.2*
You can search for this package on anaconda.org with
anaconda search -t conda python 3.5.2*
You may need to install the anaconda-client command-line client with
conda install anaconda-client

Solution:
Increase the source of the Raspberry Pi
conda config –add channels rpi
conda create –name py36 python=3.6

3. Incorrect installation of nb_conda_kernels with conda in python virtual environment
conda install nb_conda_kernels
ImportError: cannot import name ‘secure_write’

Solution:
pip install –upgrade jupyter_client

How to Solve Anaconda Error: PackageNotFoundError: Package not found: ” Package missing in current win-64 channels

1.  Anaconda is a toolkit integrated management tool. It is very convenient to download Python toolkit

conda install package_ name

However, sometimes when a toolkit (such as xmltodict) is installed, if the package cannot be found in the current channels, you will be prompted:

conda install pydot Fetching package metadata ……. Solving package specifications: . PackageNotFoundError: Package not found: ” Package missing in current win-64 channels: – xmltodictYou can search for packages on anaconda.org with anaconda search -t conda xmltodict

Then enter Anaconda search – t CONDA xmltodict search result according to the prompt:

Now choose an appropriate version to install. For example, I choose this:

conda-forge/xmltodict | 0.10.2 | conda | linux-64, win-32, win-64, osx-64

Then execute the following command to install:

conda install -c https://conda.anaconda.org/conda-forge xmltodict

2.Using PIP install package directly_ Name command and install it in the local tool library