如何实现$ python --search-for-includes=/foo/bar /home/user/x/script.py
之类的内容,其中script.py
import something
和something.py
位于/foo/bar
,
未编辑环境变量,且未编辑script.py
。
我尝试了python -c 'import sys; sys.path.append("/foo/bar")' /home/user/x/script.py
,但它没有用。
答案 0 :(得分:1)
以下列方式使用PYTHONPATH
环境变量:
$ PYTHONPATH=/foo/bar:$PYTHONPATH python /home/user/x/script.py