獲取maya對應版本的devikit包
獲取maya對應版本的vs (我這是maya2018版)
編譯庫
管理員執行
編譯原始碼:
cmd命令 :
"原始碼目錄""c:\program files\autodesk\maya2018\bin\mayapy.exe" setup.py build_ext -i "c:\program files\autodesk\maya2018\include\python2.7" -l "c:\program files\autodesk\maya2018\lib"
安裝編譯後的版本:
cmd命令:
"c:\program files\autodesk\maya2018\bin\mayapy.exe" setup.py build install
新增include lib(可以新增多個):
cmd命令:
set include=c:\program files\autodesk\maya2018\include\python2.7;%include%
set lib=c:\program files\autodesk\maya2018\lib;%lib%
python pip 安裝第三方庫
例如 為python安裝matplotlib模組 matplotlib 是乙個 python 中強大的 2d繪相簿 首先確保已經安裝python,然後用 pip來安裝matplotlib模組。1 進入到 cmd視窗下,進入python安裝目錄,如 cd c python34 scripts 2 執行...
Python 安裝第三方庫
1 pip工具 pip安裝目錄 c python34 scripts 確認pip是否安裝,執行 pip v c python34 scripts pip v 顯示 pip 9.0.3 from c python34 lib site packages python 3.4 安裝第三方庫 pyexce...
anaconda 安裝第三方庫
1 開啟anaconda prompt 輸入conda list 就會顯示已經安裝好的庫 2 如果這些庫中沒有自己需要的庫就可以用 anaconda search t conda tensorflow 查詢需要的庫這樣就會顯示你要安裝的有哪些版本 3 在使用 anaconda show 檔名 就會告...