【VSCode常用插件】
Chinese (Simplified) (简体中文)
Porject Manager【项目列表】
Bookmarks【代码书签】
TODO Tree【//TODO列表】
Image preview【图像预览】
Path Intellisense【路径提示】
CodeSnap【代码截图】
Remote - SSH【ssh连接】
Hex Editor【hex文件编辑器】
Markdown Preview Enhanced【Markdown预览】
Live Server【轻量HttpServer】
MySQL【轻量MySQL客户端】
【代码提示】
Python【Python插件】
Pylance【Python智能提示】
Black Formatter【代码格式化】
Error Lens【错误高亮提示】
Key Promoter【快捷键提示】
Code Runner【代码执行工具】
【AI代码提示】
GitHub Copilot
Tabnine
Bito AI
AWS Toolkit
Mintlify Doc Writer
Code GPT
Kodezi AI
Readable - AI Generated Comments
Denigma AI
Blackbox
IntelliCode
Wrapping Up
【其他】
shellman【Linux脚本提示】
Vim【vim模拟器】
SQL Formatter【SQL格式化脚本】
JavaScript Debugger (Nightly)【js代码调试】
Prettier - Code formatter【js格式化】
Auto Rename Tag【HTML自动补全标签对】
Parameter Hints【js提示函数的参数类型和消息】
Quokka.js【js实时显示打印输出】
Rainbow CSV【不同颜色区分不同用列】
Switcher【C头文件跳转到源码】
.ignore【新建.ignore模板】
Git Graph【Git仓库插件】
GitLens【Git功能增强】
IntelliJ IDEA Keybindings【将VsCode转成IDEA快捷键】
【主题】
Dracula Official【粉红色的吸血鬼主题】
GitHub Theme【GitHub多种主题】
One Dark Pro
【图标】
Material Icon Theme
vscode-icons
【文件->首选项->设置->打开设置(json/ui)】
{
//对话框窗口风格一致
"window.dialogStyle": "custom",
//优化光标显示
"terminal.integrated.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"editor.smoothScrolling": true,
"editor.cursorBlinking": "smooth",
//Ctrl+鼠标滚轮,控制代码缩放
"editor.mouseWheelZoom": true,
//自动折行显示
"editor.wordWrap": "on",
//自动保存,默认1000毫秒
"files.autoSave": "afterDelay",
//自动猜想代码语言类型
"files.autoGuessEncoding": true,
//粘贴、保存、输入时自动格式化代码缩进
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
//成对括号启用不用颜色
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
//代码提示
"editor.acceptSuggestionOnEnter": "smart",
"editor.suggestSelection": "recentlyUsed",
//调试断点显示在右侧标尺中
"debug.showBreakpointsInOverviewRuler": true,
//code-runner配置
"code-runner.runInTerminal": true,
"code-runner.saveAllFilesBeforeRun": true,
"code-runner.saveFileBeforeRun": true
}
【环境变量】此电脑->属性->高级系统设置->环境变量->系统变量->Path
D:\API\Python\Python3102
D:\API\Python\Python3102\Scripts
【常用命令】
python -V
python -m pip install --upgrade pip
pip -V
C:\Users\<用户名>\AppData\Roaming\pip\pip.ini
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/
pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/
pip install --upgrade pip
pip list
pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com <模块名>
pip install <模块名>==<版本号>
pip show <模块名>
pip uninstall <模块名>
End