5
ฉันจะใช้สคริปต์ Python ในบรรทัดคำสั่งโดยไม่มี cd-ing ไปยังไดเรกทอรีได้อย่างไร มันเป็น 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 'gbmx.py': [Errno 2] No such file or directory $ cd '/home/randy/lib/python' …