Intel® Distribution for Python*
Engage in discussions with community peers related to Python* applications and core computational packages.

How to install TFLearn?

MAlde3
Beginner
1,064 Views

Hello,

I install Intel Distribution for Python, Tensorflow and a few other libraries using Anaconda.

conda config --add channels intel
conda create -n idp intelpython3_core python=3.5
source activate idp
conda install numpy pandas matplotlib jupyter scikit-learn tensorflow

I need to install TFLearn in this virtual environment too. I can't find it in Anaconda repository. And, if I install it using pip, it downgrades Tensorflow and I start getting performance warnings.

What should be the correct way of installing all of them together?

0 Kudos
1 Reply
Rohit_J_Intel
Employee
1,064 Views

Hi Mustafa,

You can pip install tflearn without pip changing existing dependencies through this command:

pip install -U --no-deps tflearn


Also, you should conda install "pillow", before pip installing tflearn, it's a runtime dependency of tflearn.

Thanks,
Rohit

0 Kudos
Reply