如何安装python
在Linux和MacOS系统中,Python通常已经预装了,可以通过以下命令检查Python是否已经安装:
python --version
如果Python已经安装,则会显示Python的版本号。
如果Python没有安装,则可以通过以下命令安装:
- 在Ubuntu和Debian系统中,可以使用以下命令安装Python:
sudo apt-get update
sudo apt-get install python3
- 在CentOS和Fedora系统中,可以使用以下命令安装Python:
sudo yum update
sudo yum install python3
- 在MacOS系统中,可以使用Homebrew包管理器安装Python:
brew update
brew install python3
以上命令会安装Python 3版本,如果需要安装Python 2版本,则将命令中的python3改为python即可。
安装完成后,可以通过以下命令检查Python是否已经安装:
python --version
如果Python已经安装,则会显示Python的版本号。