I can install numpy or pandas, but I can\'t import them in cmd, jupyter notebook or sublime text. (However, I can install and import them in Pycharm).
I\'ve already
Okay, so this eventually helped me:
I uninstalled only a numpy module with "pip uninstall numpy",
I reinstalled it once again with "pip install numpy",
I ran python, imported just one function from numpy (as I thought that maybe just some of the functions can't be imported, not entire numpy) - "from numpy import array"
The function worked,so I tried to import the entire numpy once again and this time it succeeded without OSError.