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 f
Solution 1:
For python2
sudo pip install tflearn
For python3
sudo pip3 install tflearn
Solution 2:
Solution 3:
I found a simple approach for Anaconda.
Go here (https://github.com/tflearn/tflearn) to make a clone of the tflean repository or download a copy in a zip form. Extract the files in the zip file.
Launch the anaconda prompt and navigate to the folder that contains the extracted downloaded files.
Then run:
python setup.py install
You can find my source from here (http://tflearn.org/installation/)
I hope this helps.
Solution 4:
It seems that on the anaconda website tflearn is only listed as an OSX package, so you can either download the source and install that manually
Or you could do
pip install tflearn
Also, make sure you got tensorflow
installed
Solution 5:
Couldn't use a regular anaconda install, i had the same issue you had so this worked for me:
pip install tflearn
Post a Comment for "How To Install Tflearn Module On Anaconda Distribution In Windows 10"