PYTHONPATH를 어떻게 사용합니까? 경로에서 스크립트를 실행하려고하면 파일을 찾을 수 없습니다. 스크립트를 보유한 디렉토리로 CD를 넣으면 스크립트가 실행됩니다. 그렇다면 PYTHONPATH는 무엇입니까?
$ echo $PYTHONPATH
:/home/randy/lib/python
$ tree -L 1 '/home/randy/lib/python'
/home/randy/lib/python
├── gbmx_html.py
├── gbmx.py
├── __init__.py
├── __pycache__
├── scripts
└── yesno.py
$ python gbmx.py -h
python: can't open file 'gbmx.py': [Errno 2] No such file or directory
$ cd '/home/randy/lib/python'
파일 디렉토리로 cd 한 후 실행됩니다.
$ python gbmx.py -h
usage: gbmx.py [-h] [-b]
PYTHONPATH를 사용할 수없는 이유는 무엇입니까?
PYTHONPATH
PYTHONPATH
.