gpt4 book ai didi

python - 无法在 PyCharm 中导入 pygame

转载 作者:行者123 更新时间:2023-12-02 02:49:04 24 4
gpt4 key购买 nike

每当我在 PyCharm 中输入 import pygame 时,它都会说该模块尚未安装,但我可以在 python 模式下将其导入终端。

最佳答案

在你的 py 脚本中:

import sys
##lets check if this module appears in the sys.path

exist = False
for path in sys.path:
if 'pygame' in path:
print path
exist = True
if not exist:
sys.path.append('... the path to the pygame dir.. where the __init__.py')

我建议将 pygame 的路径添加到要从中执行脚本的 shell 的 PYTHONPATH 环境变量中。而不是直接在 py 脚本中编辑 sys.path

PYTHONPATH 是一个环境变量,您可以设置它来添加 python 将在其中查找模块和包的其他目录。例如:

如果您在 windows 中,则可以使用 set 命令来扩展 PYTHONPATH

在 Linux 中:

# make python look in the pygameDirPath subdirectory of your home directory for
# modules and packages
export PYTHONPATH=${PYTHONPATH}:${HOME}/pygameDirPath

关于python - 无法在 PyCharm 中导入 pygame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62356689/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com