在 python 中安装库/包
Install library / package in python
我想安装 python bayesian_changepoint_detection,但找不到安装说明:
https://github.com/hildensia/bayesian_changepoint_detection
我试过了
conda install bayesian_changepoint_detection
和
pip install bayesian_changepoint_detection
但是没用。你知道我应该如何安装它吗?我的 OS 是 Ububntu 14.04 LTS。谢谢
您需要使用来自 Github::
的安装
pip install git+git@github.com:hildensia/bayesian_changepoint_detection.git
或
pip install git+https://github.com/hildensia/bayesian_changepoint_detection.git
查看 Github 中的包内容,我看到 setup.py
,这意味着这个模块应该从终端安装(在你下载包之后),就像这样:
python setup.py install
我想安装 python bayesian_changepoint_detection,但找不到安装说明:
https://github.com/hildensia/bayesian_changepoint_detection
我试过了
conda install bayesian_changepoint_detection
和
pip install bayesian_changepoint_detection
但是没用。你知道我应该如何安装它吗?我的 OS 是 Ububntu 14.04 LTS。谢谢
您需要使用来自 Github::
的安装pip install git+git@github.com:hildensia/bayesian_changepoint_detection.git
或
pip install git+https://github.com/hildensia/bayesian_changepoint_detection.git
查看 Github 中的包内容,我看到 setup.py
,这意味着这个模块应该从终端安装(在你下载包之后),就像这样:
python setup.py install