我编写了一些Python模块,在Python脚本中导入时会出错。
更具体地说,有一个名为" affective_analysis"的目录,它有两个目录" emtiocon_parser"和"实用程序"。在" emtiocon_parser"目录,这是我的模块有 init .py等文件和"实用程序"目录,有一个导入emoticon_parser的python脚本。
我将其导入为以下代码: 来自emoticon_parser.emoticoss import parse_emoticons
已完成以下步骤:
1-在我自己的模块(emtiocon_parser)的相应目录中,有__init__.py
和__init__.pyc
个文件。
2-我通过运行sys.path.append(..)
将模块的路径(emtiocon_parser)添加到sys.path。
3-我通过PYTHONPATH
命令将这些路径放在export
变量中。
仍有错误,例如我收到了以下错误之一:
ImportError: No module named politeness.model
Python版本为2.7.10,在Mac OS上运行。