I have anaconda installed and I have changed the interpreter on the top right to my anaconda environment. When imported a library I am getting the following error
JavaScript
x
2
1
ImportError: DLL load failed: The specified module could not be found
2
I have added the following variables in PATH
JavaScript
1
6
1
C:Usersnameanaconda3
2
C:Usersnameanaconda3Scripts
3
C:Usersnameanaconda3Library
4
C:Usersnameanaconda3Librarybin
5
C:Usersnameanaconda3Librarymingw-w64bin
6
I have added the following variables in Preferences:Settings(JSON)
JavaScript
1
4
1
"terminal.integrated.shell.windows": "C:\Windows\System32\cmd.exe",
2
"terminal.integrated.shellArgs.windows": ["/K", "C:\Users\name\anaconda3\Scripts\activate.bat C:\Users\name\anaconda3"],
3
"python.condaPath": "C:\Users\name\anaconda3\conda.exe"
4
None of the solutions worked.
Advertisement
Answer
Posting the answer if anyone is stuck on the same issue. After trying the two above-mentioned steps. I have opened the terminal in VS code and activated my environment
JavaScript
1
2
1
conda activate myenv
2
Next run
JavaScript
1
2
1
>code .
2
in the VS code’s terminal. If it does not work close VS code and repeat this step.
If the issue still persists then
- Open anaconda prompt.
- Change the directory to location where jupyter notebook is preset.
- execute
code .
- Try running the import statement now.