5
디렉토리로 cd하지 않고 명령 행에서 Python 스크립트를 사용하려면 어떻게해야합니까? PYTHONPATH입니까?
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 …