在安裝 Python 后,您可能需要將其添加到系統的環境變量中,以便在命令行或終端中使用它。以下是在不同操作系統上配置 Python 環境變量的方法:
Windows:
C:\Python39
)。確保路徑之間用分號(;)分隔。macOS 或 Linux:
~/.bashrc
、~/.bash_profile
或 ~/.zshrc
文件。使用文本編輯器打開其中一個文件,例如:nano ~/.bashrc
。<your_python_install_path>
):export PATH=$PATH:<your_python_install_path>/bin
例如:
export PATH=$PATH:/usr/local/bin/python3.9
source ~/.bashrc
如果您編輯的是其他配置文件(如 ~/.bash_profile
或 ~/.zshrc
),請使用相應的命令(例如 source ~/.bash_profile
)。
現在,您應該可以在命令行或終端中使用 Python 命令了。