Issue
I setup my virtual env with pip install virtualenv
Then actiavte it with .\env\Scripts\activate
When i try to import numpy in my views.py
i get this error
If i switch to Python global the import works but i can't run the server
When i use pip install numpy
after activating virtual env i get this error.
path...\env\Scripts\pip.exe" install numpy': The system cannot find the file specified.
Solution
Found solution: python -m pip install [module name]
Answered By - TF Ryzen Answer Checked By - Marie Seifert (WPSolving Admin)