2
Python에서 sys.path에 파일 경로를 영구적으로 추가
나는라는 파일이 있었다 example_file.py나는 추가하기로 결정, 그래서 나는 여러 다른 파일에서 사용하는 원 example_file.py에 sys.path파일을 사용하는 다른 파일이 파일을 가져올. 이를 위해 IPython에서 다음을 실행했습니다. import sys sys.path sys.path.append('/path/to/the/example_file.py') print(sys.path) 방금 추가 한 경로를 볼 수 있으며 다음과 같은 다른 디렉토리 경로에서이 파일을 가져 오려고 할 때 : import example_file …