私のPythonはどういうわけか同じディレクトリでモジュールを見つけることができません。私は何が間違っているのですか?(python2.7)
したがって、1つのディレクトリ「2014_07_13_test」があり、その中に2つのファイルがあります。
- 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()
それでもPythonは私に
>>> 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