# Window7 Setup tensorflow (anaconda) ###### tags: `python` `tensorflow` ## Setup ### Step1: launch Anaconda enviroment ```shell #建立tensorflow virtual environment conda create --name tensorflow python=3.7 anaconda #啟動 tensorflow 虛擬環境 activate tensorflow #Install tensorflow pip install tensorflow #Install keras pip install keras ``` ### Step2: 啟動Jupyter ``` jupyter notebook ``` * 開啟新檔案 (using python3) ![](https://i.imgur.com/m3Z9heE.png) ## reference * [blog-01](http://tensorflowkeras.blogspot.com/2017/08/tensorflowkeraswindows_29.html) * [Keras offical site: sequential_model](https://keras-cn.readthedocs.io/en/latest/getting_started/sequential_model/)