내 파이썬은 어떻게 든 같은 디렉토리에서 모듈을 찾을 수 없습니다. 내가 도대체 뭘 잘못하고있는 겁니까? (python2.7)
그래서 두 개의 파일이있는 '2014_07_13_test'디렉토리가 하나 있습니다.
- test.py
- hello.py
여기서 hello.py :
# !/usr/local/bin/python
# -*- coding: utf-8 -*-
def hello1():
print 'HelloWorld!'
및 test.py :
# !/usr/local/bin/python
# -*- coding: utf-8 -*-
from hello import hello1
hello1()
여전히 파이썬은 나에게 준다.
>>> Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 4, in <module>
ImportError: No module named hello
뭐가 문제 야?
import sys; sys.path