简体   繁体   中英

how to check which version of numpy scipy depends on?

I'm installing scipy and already have numpy installed. How can I know if my numpy version is sufficient for scipy 0.15.1?

Thank!

I think you could use test in numpy and scipy

    import numpy
    import scipy

    numpy.test("full")
    scipy.test("full")

I hope these may help you!

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