我想安装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。感谢。
答案 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