1. 程式人生 > >Visual Studio Code 支援TensorFlow配置支援

Visual Studio Code 支援TensorFlow配置支援

 

首先選擇直譯器

選擇TensorFlow版本的conda版本 (當然你如果是通過python單獨安裝的TensorFlow也可以)

編輯器輸入程式碼,進行測試

import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))

成功~

 

https://code.visualstudio.com/docs/python/python-tutorial   更多VScode技巧檢視官網教程