tyleax
tyleax

Reputation: 1788

Does Python come with numpy library as default

Does python come with numpy library as default or do you have to install it after installing python?

Upvotes: 0

Views: 4369

Answers (1)

simone.zanoni
simone.zanoni

Reputation: 80

Python doesn't come with numpy installed. However it could have been installed as requirement while installing other packages. You could install it via pip:

pip install numpy

Or, you could check the list of the installed packages and their version via pip:

pip list

Upvotes: 3

Related Questions