windows10 64位 深度學習環境搭建
# 檢視已建立的環境
conda env list
#建立虛擬環境
conda create -n name python=3.7
#啟用虛擬環境
conda activate name
#退出虛擬環境
conda deactivate
#刪除虛擬環境
conda remove -n name --all
資料處理類:numpy scipy pandas一條指令安裝所有包:資料視覺化類:matplotlib seaborn
傳統視覺類:opencv pillow
深度視覺類:tensorflow 2.1
編輯器: jupyter notebook
外掛程式:nbextension autopep8
pip install numpy scipy pandas matplotlib pillow jupyter notebook opencv-python==3.4.2.17 opencv-contrib-python==3.4.2.17 tensorflow==2.1.0 jupyter_contrib_nbextensions autopep8 -i
""
常用擴充套件hinterland **提示
autopep8 **規範
nbextensions常用擴充套件及標籤不顯示解決:
python -m pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user --skip-running-check
深度學習環境搭建
python3.6版本安裝 tensorflow 1.5可以指定安裝版本,目前tensorflow更新到1.7,centos建議安裝1.5版本,其餘版本你的電腦可能不支援 pip3 install upgrade i tensorflow 1.5 pip3 install keras pip3 in...
深度學習環境搭建
1 安裝包選擇 pip提供的opencv的包的型別有四種 1 opencv python 只包含opencv庫的主要模組.一般不推薦安裝 2 opencv contrib python 包含主要模組和contrib模組,功能基本完整 3 opencv python headless 和opencv ...
搭建Linux深度學習環境
參考安裝anaconda時環境變數的設定很重要。測試時注意 import tensorflow as tf 用這一句測試通過就可以了 hello tf.constant first tensorflow sess tf.session python3.0以上版本用這句輸出 print sess.ru...