8
我想在我的ubuntu機器上運行用python編寫的第三方工具(corgy tool)。Ubuntu將目錄添加到Python路徑
但是我不知道如何添加額外的模塊到Python路徑。
cat doc/download.rst
There is currently no setup.py, so you need to manually add
the download directory to your PYTHON_PATH environment variable.
如何將目錄添加到PYTHON_PATH中?
我曾嘗試:
export PYTHON_PATH=/home/user/directory:$PYTHON_PATH && source .bashrc
export PATH=/home/user/directory:$PATH && source .bashrc
python
import sys
sys.path.append("/home/user/directory/")
但是當我嘗試運行這個工具,我得到:
Traceback (most recent call last):
File "examples/dotbracket_to_bulge_graph.py", line 4, in <module>
import corgy.graph.bulge_graph as cgb
ImportError: No module named corgy.graph.bulge_graph
你能解釋這與出口電話有什麼不同嗎? – njzk2
@ njzk2'export'只是設置當前會話的變量。這也應該工作,但只有在你註銷之前。而''''''''''''''''''''當然沒有意義。 – kirelagin
而且,更重要的是,當在'.bash_profile'中設置變量時,您必須使用'export'_。 – kirelagin