简体   繁体   中英

Update package of anaconda python

I'm working with python 3.4 . I use anaconda to install my data-science's packages and I need the statsmodels 0.8 :

https://pypi.python.org/pypi/statsmodels/

but on anaconda there is only the statsmodels 0.6 :

https://docs.continuum.io/anaconda/pkg-docs

And I really need to work with conda for the deployment.

Any idea of how can I have the 0.8 ?

IF a package is available on PyPi, you can use

conda skeleton pypi package 

to create a condo-recipe for that package, then

conda build package
conda install --use-local package 

to build and install the package

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