python-3.xtensorflowanacondatflearn

How to install tflearn module on anaconda distribution in windows 10


I have already install most of the libraries on anaconda. In one of my code is showing that No module named 'tflearn'.

I also used the command conda install tflearn. it shows the failed message.

   PackagesNotFoundError: The following packages are not available from 
   current channels:

Current channels:


Solution

  • For python2

    sudo pip install tflearn
    

    For python3

    sudo pip3 install tflearn