Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试以下代码行:
from Object import ClassName
并得到错误:
未解决的参考“对象”
我正在使用 PyCharm 2.7.3
这是因为 PyCharm 无法访问您正在谈论的对象。这可能是因为它不在您的 中PYTHONPATH,这可能是因为您从外部库中导入了它而没有正确安装库。
PYTHONPATH
此外,如果您在目录中的 Python 文件中创建了一个对象,请考虑像这样导入它:
from .file import Object