Reputation: 1788
Does python come with numpy library as default or do you have to install it after installing python?
Upvotes: 0
Views: 4369
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