Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using tensorflow in IDE on windows

I have used the Docker installation as suggested at https://bishnusarker.wordpress.com/2015/11/11/how-to-install-google-tensorflow-in-your-windows-machine-using-docker-image/ to run TensorFlow on my Windows 7 machine. I have it up and running on the docker terminal. I would like to know how to import the TensorFlow library from the PyCharm IDE.

like image 269
aiwabdn Avatar asked Nov 08 '22 19:11

aiwabdn


1 Answers

Since I am currently struggling with a similar issue, I came across your question. You can run PyCharm on your Windows machine and configure a remote interpreter to mount your python code to the docker image, in which your libraries reside and run it there as described here: https://blog.jetbrains.com/pycharm/2015/12/using-docker-in-pycharm/ For tensorflow in particular, this might be interesting as well: http://killianlevacher.github.io/blog/posts/post-2016-07-22/post.html

like image 100
molig Avatar answered Nov 14 '22 23:11

molig