python小课堂:01 Python环境安装

python 环境搭建及讲解
更新于: 2022-03-15 03:20:14

相关问题

  1. 什么是编程环境
  2. 安装 vscode 编辑器(PyCharm)
  3. python2 python3 用哪个
  4. 为什么会有 python2/python3
  5. Mac下编程环境的配置安装
  6. 协助大家搞好环境配置

写一个 hello world

  1. 为什么是 hello world
  2. 简单解释一下 hello world
  3. 运行一下 hello.py

文件命名

  • hello.py
  • hello_world.py

运行一个 python程序

❯ python3 app.py
hello

Macos里的默认python

WARNING: Python 2.7 is not recommended. 

所以我们要安装的是python3

IDE工具

IDE一般指集成开发环境。 集成开发环境(IDE,Integrated Development Environment )

  • webstorm: 前端
  • pycharm: python

操作系统默认python2

Mac下安装python3

# 安装python3
brew install python3
# 官网下载 python-xxx.pkg 文件,正常安装
$ python3
Python 3.9.4 (default, Apr  5 2021, 01:49:30) 
[Clang 12.0.0 (clang-1200.0.32.29)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

将 python3 设置为系统默认 python

目前系统中的python
link操作完成之后的效果
# 找到当前 python3 具体版本
ls -l /usr/local/bin/python*
# 将此版本 link 为 python
ln -s -f /usr/local/bin/python3.9 /usr/local/bin/python
# 新建一个terminal
python --version

第一个Python程序

  1. 找一个目录,新建 hello.py 文件
  2. 写入代码(如下)
  3. 运行 python3 hello.py
# run
python3 hello.py
python3 ./hello.py
print("hello world.")
print('I\'m aric')

# 转义字符 \'

版本号

3.6.10: 主-次-修订

  • 主:大的版本变更,会有破坏性的更新
  • 次:有大的更新,可能是API/功能新增加,或者减少
  • 修订: 功能BUG修复

课程长度

  • 开始: 2022-02-13 20:00
  • 结束: 2022-02-13 20:57:01

centos 下安装指定版本

# 到临时目录,下载文件
cd /tmp
wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tgz --no-check-certificate
# 到目录里配置、安装 
tar xzf Python-3.9.6.tgz && cd Python 3.9.6
./configure --enable-optimizations
make altinstall

参考