를 사용하여 없음 모듈 이름 test_data하지만 PyCharm에서 test.py 같은 디렉토리에 test_data.py, 나는 test_data를 가져 오기 위해 노력하고 있어요 test.py와 같은 디렉토리. 당신이 볼 수 있듯이, 나는 VIRTUALENV를 사용하여 pycharm에서이 작업을 실행하고ImportError를 :</p> <pre><code>import unittest2 import re from test_data import receipt1_example </code></pre> <p>test_data.py가에 있습니다 test.py에서 VIRTUALENV
/Users/ahammond/.virtualenvs/ric2.6/bin/python2.6 /Applications/PyCharm.app/helpers/pycharm/utrunner.py /Users/ahammond/src/hackfest_spring_2012/parse_me/test.py::test true Testing started at 11:30 AM ... Traceback (most recent call last):
File "/Applications/PyCharm.app/helpers/pycharm/utrunner.py", line 121, in module = loadSource(a[0]) File "/Applications/PyCharm.app/helpers/pycharm/utrunner.py", line 44, in loadSource module = imp.load_source(moduleName, fileName) File "/Users/ahammond/src/hackfest_spring_2012/parse_me/test.py", line 4, in from test_data import receipt1_example ImportError: No module named test_dataProcess finished with exit code 1
: 나는 다음과 같은 오류가 발생합니다. 다음은 구성의 스크린 샷입니다 :
는
추악하지만 작동합니다. 감사! 분명히 사용하고 있습니다. from test_data 가져 오기 receipt1_example – Andrew