방금 모듈 (setuptools)이 있지만 로컬로 사용하고 있습니다 (Python의 lib에 설치하지 않음). 문제는 파이썬이 모듈로 인식 할 수없는 것입니다분명히 여기에있는 모듈을 가져올 수없는 이유는 무엇입니까?
Traceback (most recent call last):
File "/Users/James/beep/setup.py", line 1, in <module>
from tools import setup
ImportError: No module named tools
내 계층 구조 :
folder-------|
|-other stuff
|
|-setuptools folder
|
|-setup.py
|
|-main section of my app
tools.py가없는 setup.py 파일이 있습니다. "from x import y"는 "x.py"를 찾고 x.py에서 클래스/함수/변수 "y"를 가져옵니다. – EyasSH