含有__init__.py但还是无法导入
我在程序里头创建了__init__.py,但还是无法从程序但其他文件导入__init__配置目录结构:
flask_project
|-__init__.py
|-static/
| |-style.css
|-templates/
| |-index.html
|-settings.py
|-errors.py
|-commands.py
|-views.py
有没有大佬知道怎么办? 可能是 Python 没识别出来这是个包吧,可以试试用 sys.path.append() 这里我在settings写
"from flask_project import app“
就会报错 zltzlt 发表于 2020-7-25 12:16
可能是 Python 没识别出来这是个包吧,可以试试用 sys.path.append()
这......怎么用?{:10_266:} 你是用 PyCharm 吗? Twilight6 发表于 2020-7-25 12:26
你是用 PyCharm 吗?
没错
你先试试在代码前面加上 :
import sys
sys.path.append('/flask_project')
页:
[1]