我有带有Python项目的virtualenv,我想运行脚本,该脚本导入本地模块utils。 项目结构:
project
├── scripts
│ ├── script1.py
│ ├── script2.py
│ └── script3.py
└── utils.py
当我进入shell并运行命令时
cd /home/me/project && python
然后输入python shell
from utils import *
一切正常,但是当我尝试通过
在shell中运行脚本时cd /home/me/project && python ./scripts/script1.py
我得到ImportError
,找不到模块utils