python ของฉันไม่พบโมดูลใด ๆ ในไดเรกทอรีเดียวกัน ผมทำอะไรผิดหรือเปล่า? (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