How to import ALL of SciPy at once

Viewed 34

One of the interesting aspects of SciPy is you cannot just import scipy, you need to import the specific modules that you intend to use.

This is fine for a script where startup/import times can matter. But in the REPL it gets annoying very fast (especially when you need 3-4 random modules)

Is there a way I can import ALL of SciPy (either from the REPL itself or by a startup script)?

0 Answers
Related