Python Visual Studio Code Module not found

前端 未结 2 1030
心在旅途
心在旅途 2020-12-20 04:01

Have installed Python 3.7.6 and am trying to write a code in Visual Studio Code

Using: import pikepdf

Gets me the error of ModuleNotFoundE

相关标签:
2条回答
  • 2020-12-20 04:32

    The issue was that Visual Studio Code comes with its own version of Python, while I had installed my own.

    The issue was solved by changing the version VSC was running so it matched the one where the modules were being installed.

    0 讨论(0)
  • 2020-12-20 04:40

    You can check which environment your VSCode is using. You can do that by inspecting your left-bottom corner, here:

    When you are running your code, you are using python or python3.7?

    0 讨论(0)
提交回复
热议问题