If you meet this error message
"error C4996: 'inet_addr': Use inet_pton() or InetPton() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings"
Add this code first line on the code.
#define _WINSOCK_DEPRECATED_NO_WARNINGS
TensorFlow is running on Linux and Mac based.
Windows environment is not yet supported.
But if we use docker s/w that virtual machine similar with virtual box, we can run tensor flow on window environment.
In other words, docker create virtual environment for linux environment.
So how we use the tensorflow result that learned based on linux or mac in window?
I have not tried it yet.
There are api for c++ version in tensorflow.
There is no learning part, C++ version is included only evaluating part.
But if I success build c++ version api of tensor flow in window environment, we available the learning result in window after learning from linux.
I will try this plan after test basic tensorflow.
Then, let's use the tensorflow using docker s/w on window.
3. run docker
excute Docker Quickstart terminal.
After setting (first takes about 1~2 minutes)
You can see the whale illustration.
verify your setup, type this command $ docker run hello-world
then you can this message.
--------------- #install TensorFlow
type this command $docker-machine ip default
then you can check notebook server ip.
type this command $ docker run -it b.gcr.io/tensorflow/tensorflow
or $ docker run -p 8888:8888 -it b.gcr.io/tensorflow/tensorflow
when you enter the command firstly, tensorflw is installed once.
and run notebook server.
but in my case, first command is not run notebook server.
If you problem with me, type second command.
--------------- #run notebook
type this on you browser
http://192.168.99.100:8888
then you can see notebook web page.