有没有办法永久设置 PYTHONPATH?

Is there a way to set PYTHONPATH permanently?

每天,当我打开一个 Ubuntu 终端并想要 运行 一个 python 项目时,我必须先 运行 export PYTHONPATH=$(pwd)。有没有办法避免每次打开计算机时都这样做?有没有办法为该项目永久设置我的 PYTHONPATH

你试过添加你提到的行吗

export PYTHONPATH=$(pwd)

~/.bashrc~/.profile?

将以下行放入您的 ~/.bashrc 文件中:

export PYTHONPATH=/the/location/of/the/path

您应该能够通过 ~/.bashrc 文件或 ~/.profile 文件为您的用户永久设置它。只需将您在其中一个文件中显示的行输入即可。