1 2 python -m pip freeze > requirements.txt #将所有依赖项及其版本信息输出 python -m pip install -r requirements.txt
1 2
python -m pip freeze > requirements.txt #将所有依赖项及其版本信息输出 python -m pip install -r requirements.txt
Python对大小写敏感 语句末尾不用加分号。 以冒号:结尾时,缩进的语句视为代码块。 可以在数字中间以_分隔,如10_000_000_000 当Python解释器读取源代码时,为了让它按UTF-8编码读取,可在开头加上 1 # -*- coding: utf-8 -*- 检查python语法正确性: 1 2 pip install pyflakes pyflakes xxx.p...
The module used to create and manage virtual environments is called venv. python3 -m venv myvenvpath # 可以在myvenvpath前加--copies选项,但会占用更多的磁盘空间 source myvenvpath/bin/activate 激活它 deactivate 退出当前环境 ...
创建配置文件时,选择Python File,然后修改下program和python的值: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing a...
Python系列1:使用venv创建虚拟环境
Python系列3:在vscode中调试python