windows anaconda 安裝 pomegranate
阿新 • • 發佈:2018-12-05
-
原始碼安裝,github 搜尋 pomegranate: https://github.com/jmschrei/pomegranate
在cd 到 setup.py所在目錄,執行 python setup.py install(解除安裝時執行uninstall)在此可以瞭解下python原始碼安裝的簡單介紹:https://www.jianshu.com/p/8fdbe14f2d3c
ubuntu系統安裝:https://blog.csdn.net/jxm_csdn/article/details/52935390?utm_source=blogxgwz7安裝後,我在anaconda prompt 執行 :
>>> import pomegranate
可以執行成功,但在系統的 cmd 環境下不行,報錯:
ImportError: DLL load failed: 找不到指定的模組
之後重新安裝anaconda,重新配置環境變數就好(可能重灌不是必須,只需配好環境變數),
-
使用按照上面的github地址,進入 docs/install.rst,檢視安裝步驟,即直接執行:pip install pomegranate,可是終端顯示錯誤
-
使用anaconda自帶的包安裝,https://anaconda.org/bioconda/pomegranate
在anaconda prompt 輸入conda install -c bioconda pomegranate (推薦)