I'm unable to import any external packages currently installed on any of my conda enviroments on either VS code or the command line.
For example after running the below command for my scripts
env:
C:\Users\UserName>C:\\Users\\UserName\\AppData\\Local\\Continuum\\miniconda3\\envs\\scripts\\python.exe -c "import pandas"
The below traceback message is displayed:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\UserName\AppData\Local\Continuum\miniconda3\envs\scripts\lib\site-packages\pandas\__init__.py", line 17, in <module>
"Unable to import required dependencies:\n" + "\n".join(missing_dependencies)
ImportError: Unable to import required dependencies:
numpy: DLL load failed: The specified module could not be found.
I can run the same command in the Anaconda Prompt terminal (or import pandas on a Jupyter Notebook) and no Traceback is displayed. Thank you in advance.
Note:: I've used this page as reference