Mein Python kann irgendwie keine Module im selben Verzeichnis finden. Was mache ich falsch? (Python2.7)
Ich habe also ein Verzeichnis '2014_07_13_test' mit zwei Dateien:
- test.py
- hallo.py.
wo hallo.py:
# !/usr/local/bin/python
# -*- coding: utf-8 -*-
def hello1():
print 'HelloWorld!'
und test.py:
# !/usr/local/bin/python
# -*- coding: utf-8 -*-
from hello import hello1
hello1()
Noch gibt mir Python
>>> Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 4, in <module>
ImportError: No module named hello
Was ist los mit dir?
import sys; sys.path