Reputation: 171
I have installed tensorflow with docker in my windows machine. I am opening the tensorflow with powershell
docker run -it -p 8888:8888 tensorflow/tensorflow
It's opening on a ipython notebook. But when I want to import
import tflearn ImportError: No module named tflearn.
After that I have installed tflearn with
pip install tflearn
But getting still same error. What is the problem anyone know that?
Upvotes: 0
Views: 4635
Reputation: 343
I see that you are having trouble installing TFLearn inside tensorflow docker container. In order to do that you can simply launch a new terminal from the Ipython Notebook interface and install your package there using pip.
To install TFLearn, use the same command that you used pip install tflearn
.
If pip is not installed by default, you can do that by sudo apt-get install python-pip
.
Upvotes: 2