Come posso usare PYTHONPATH? Quando provo a eseguire uno script nel percorso, il file non viene trovato. Quando eseguo il cd nella directory contenente lo script, viene eseguito lo script. Quindi a che serve il PITONEPATO?
$ 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'
Dopo cd nella directory dei file viene eseguito ..
$ python gbmx.py -h
usage: gbmx.py [-h] [-b]
Perché non posso usare alcun PYTHONPATH?
PYTHONPATH
PYTHONPATH
.