Reputation: 8093
I have successfully install NumPy on Ubuntu; however when inside a virtualenv, NumPy is not available. I must be missing something obvious, but I do not understand why I can not import NumPy when using python from a virtualenv. Can anyone help? I am using Python 2.7.3 as my system-wide python and inside my virtualenv. Thanks in advance for the help.
Upvotes: 0
Views: 622
Reputation: 397
You have to install it inside of your virtual environment. The easiest way to do this is:
Upvotes: 2