1. 第一个python程序 1. py文件(扩展名是.py) 2. 文件名使用字母开头,或者_开头,组成字母下划线数字 3. 多py文件构成python程序 4. python的目录也称包路径/包目录 包路径使用. 系统路径使用/或则\ 2. window怎么执行程序 1. 找到程序 在当前路径查找 在window安装目录/system32 在环境变量PATH指定的路径查找 - 操作系统加载会自动生成变量 比如PATH 以上都找不到,报一个错误:非法的内部命令与外部命令(找得到这个程序:python.exe, msi, python.bat, cmd, com) 怎么显示环境变量:echo %变量名% set显示所有环境变量 设置环境变量 局部环境变量 用户环境 系统环境 我们程序所在的路径是否设置在PATH环境(系统能否找到) where 命令名 2. 加载程序 3. 执行 补充: 1. help得到Window所有的内部指令 2. help 指令,获得这个指令使用的说明 上午的任务: 1. 安装Python运行环境 where python : 看看是否与您的安装路径一致 2. 写一个程序,并运行 观察输出结果 3. 安装模块 打开终端,使用管理员身份运行 3.1. pip install torch -i https://pypi.tuna.tsinghua.edu.cn/simple 3.2. pip install jupyterlab -i https://pypi.tuna.tsinghua.edu.cn/simple 3.3. pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple 3.4. pip install opencv-contrib-python -i https://pypi.tuna.tsinghua.edu.cn/simple 3.5. pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple 3.6. pip install PyQtWebEngine -i https://pypi.tuna.tsinghua.edu.cn/simple 3.7. pip install matplotlib==3.5.0 -i https://pypi.tuna.tsinghua.edu.cn/simple 3.8. pip install tqdm==3.5.0 -i https://pypi.tuna.tsinghua.edu.cn/simple 补充: 1. 数学计算三大利器:R,Matlab,Python(优选) 下午任务: 1. 安装python的各个模块 3.1. pip install torch -i https://pypi.tuna.tsinghua.edu.cn/simple 3.2. pip install jupyterlab -i https://pypi.tuna.tsinghua.edu.cn/simple 3.3. pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple 3.4. pip install opencv-contrib-python -i https://pypi.tuna.tsinghua.edu.cn/simple 3.5. pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple 3.6. pip install PyQtWebEngine -i https://pypi.tuna.tsinghua.edu.cn/simple 3.7. pip install matplotlib==3.5.0 -i https://pypi.tuna.tsinghua.edu.cn/simple 3.8. pip install tqdm==3.5.0 -i https://pypi.tuna.tsinghua.edu.cn/simple