尝试导入已安装的 python 模块收到错误

Trying to import a python module that is installed receiving error

我是 python 的新手,所以这可能是一个简单的修复,但我无法通过谷歌搜索找到解决方案。我在尝试 运行 导入模块时遇到此错误。

Traceback (most recent call last):
  File "c:/Users/joeshmo/OneDrive - company Industries/Documents/Python/Excel Join/join.py", line 1, in <module>
    from openpyxl import load_workbook
ModuleNotFoundError: No module named 'openpyxl'

Openpyxl 已经安装,因为 pip 给我这个...

pip install openpyxl    
Requirement already satisfied: openpyxl in c:\users\joeshmo\appdata\local\programs\python\python38-32\lib\site-packages (3.0.5)
Requirement already satisfied: jdcal in c:\users\joeshmo\appdata\local\programs\python\python38-32\lib\site-packages (from openpyxl) (1.4.1)
Requirement already satisfied: et-xmlfile in c:\users\joeshmo\appdata\local\programs\python\python38-32\lib\site-packages (from openpyxl) (1.0.1)

Python 安装在这里...

C:\Users\joeshmo\AppData\Local\Programs\Python\Python38-32

Python路径在这里...

C:\Users\joeshmo\AppData\Local\Programs\Python\Python38-32\python38.zip
C:\Users\joeshmo\AppData\Local\Programs\Python\Python38-32\DLLs
C:\Users\joeshmo\AppData\Local\Programs\Python\Python38-32\lib
C:\Users\joeshmo\AppData\Local\Programs\Python\Python38-32
C:\Users\joeshmo\AppData\Roaming\Python\Python38\site-packages
C:\Users\joeshmo\AppData\Local\Programs\Python\Python38-32\lib\site-packages

在 windows 10.

如有任何帮助,我们将不胜感激!

在与同事进行故障排除后,我们发现我有 2 个版本的 python 运行ning。我可以 运行 "py" (3.8.0) 或 "python"(3.8.5)。卸载旧版本后。这不再是问题。