I am trying to install numpy in a virtual environment that I created. I used the following series of commands to create and activate and then installing a local version of n
I had the same issue, and solved it simply by removing the old env file with rm -rf env. Then I created a new environment with virtualenv env, followed by installing the requirements, normally pip install -r requirements.txt, then I was able to run my app successfully.