我想安装python bayesian_changepoint_detection,但是我找不到关于如何安装的说明:
我试过了
conda install bayesian_changepoint_detection和
pip install bayesian_changepoint_detection但没起作用。你知道我该怎么安装它吗?我的操作系统是Ububntu14.04LTS。谢谢。
发布于 2016-04-18 01:28:59
您需要使用Github::
pip install git+git@github.com:hildensia/bayesian_changepoint_detection.git或
pip install git+https://github.com/hildensia/bayesian_changepoint_detection.git发布于 2016-04-18 01:35:17
查看Github中的包内容,我看到了setup.py,这意味着这个模块应该从终端安装(在下载了包之后),如下所示:
python setup.py installhttps://stackoverflow.com/questions/36684053
复制相似问题