notes01.txt 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. 1. 第一个python程序
  2. 1. py文件(扩展名是.py)
  3. 2. 文件名使用字母开头,或者_开头,组成字母下划线数字
  4. 3. 多py文件构成python程序
  5. 4. python的目录也称包路径/包目录
  6. 包路径使用.
  7. 系统路径使用/或则\
  8. 2. window怎么执行程序
  9. 1. 找到程序
  10. 在当前路径查找
  11. 在window安装目录/system32
  12. 在环境变量PATH指定的路径查找
  13. - 操作系统加载会自动生成变量 比如PATH
  14. 以上都找不到,报一个错误:非法的内部命令与外部命令(找得到这个程序:python.exe, msi, python.bat, cmd, com)
  15. 怎么显示环境变量:echo %变量名%
  16. set显示所有环境变量
  17. 设置环境变量
  18. 局部环境变量
  19. 用户环境
  20. 系统环境
  21. 我们程序所在的路径是否设置在PATH环境(系统能否找到)
  22. where 命令名
  23. 2. 加载程序
  24. 3. 执行
  25. 补充:
  26. 1. help得到Window所有的内部指令
  27. 2. help 指令,获得这个指令使用的说明
  28. 上午的任务:
  29. 1. 安装Python运行环境
  30. where python : 看看是否与您的安装路径一致
  31. 2. 写一个程序,并运行
  32. 观察输出结果
  33. 3. 安装模块
  34. 打开终端,使用管理员身份运行
  35. 3.1. pip install torch -i https://pypi.tuna.tsinghua.edu.cn/simple
  36. 3.2. pip install jupyterlab -i https://pypi.tuna.tsinghua.edu.cn/simple
  37. 3.3. pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple
  38. 3.4. pip install opencv-contrib-python -i https://pypi.tuna.tsinghua.edu.cn/simple
  39. 3.5. pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple
  40. 3.6. pip install PyQtWebEngine -i https://pypi.tuna.tsinghua.edu.cn/simple
  41. 3.7. pip install matplotlib==3.5.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
  42. 3.8. pip install tqdm==3.5.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
  43. 补充:
  44. 1. 数学计算三大利器:R,Matlab,Python(优选)
  45. 下午任务:
  46. 1. 安装python的各个模块
  47. 3.1. pip install torch -i https://pypi.tuna.tsinghua.edu.cn/simple
  48. 3.2. pip install jupyterlab -i https://pypi.tuna.tsinghua.edu.cn/simple
  49. 3.3. pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple
  50. 3.4. pip install opencv-contrib-python -i https://pypi.tuna.tsinghua.edu.cn/simple
  51. 3.5. pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple
  52. 3.6. pip install PyQtWebEngine -i https://pypi.tuna.tsinghua.edu.cn/simple
  53. 3.7. pip install matplotlib==3.5.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
  54. 3.8. pip install tqdm==3.5.0 -i https://pypi.tuna.tsinghua.edu.cn/simple