简体   繁体   中英

Install library / package in python

I'd like to install python bayesian_changepoint_detection, but I can't find instructions for how to install:

https://github.com/hildensia/bayesian_changepoint_detection

I tried

conda install bayesian_changepoint_detection

and

pip install bayesian_changepoint_detection

but it didn't work. Do you know how I should install it? My OS is Ububntu 14.04 LTS. Thanks.

You need to use the install from Github::

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

or

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

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

python setup.py install

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM