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
。