在python中安装库/包

时间:2016-04-18 01:18:28

标签: python linux installation package install

我想安装python bayesian_changepoint_detection,但我找不到如何安装的说明:

https://github.com/hildensia/bayesian_changepoint_detection

我试过

conda install bayesian_changepoint_detection

pip install bayesian_changepoint_detection

但它没有用。你知道我该怎么安装吗?我的操作系统是Ububntu 14.04 LTS。感谢。

2 个答案:

答案 0 :(得分:1)

您需要使用Github ::

中的安装
pip install git+git@github.com:hildensia/bayesian_changepoint_detection.git

pip install git+https://github.com/hildensia/bayesian_changepoint_detection.git

答案 1 :(得分:1)

在Github中查看软件包的内容,我看到setup.py,这意味着,该模块应该从终端安装(在您下载软件包之后),如下所示:

python setup.py install