自己的vscode-settings.json配置详解

vscode从插件库里安装eslint和prettier

实现自动格式化

{
 // 是否允许自定义的snippet片段提示
 "editor.snippetSuggestions": "top",
 // vscode默认启用了根据文件类型自动设置tabsize的选项
 "editor.detectIndentation": false,
 // 重新设定tabsize
 "editor.tabSize": 2,
 // #每次保存的时候自动格式化
 "editor.formatOnSave": false,
 // #每次保存的时候将代码按eslint格式进行修复
 "eslint.autoFixOnSave": true,
 "editor.fontWeight": "400",
 "editor.formatOnType": false,
 "workbench.iconTheme": "material-icon-theme",
 "git.confirmSync": false,
 "team.showWelcomeMessage": false,
 "window.zoomLevel": 0,
 "editor.renderWhitespace": "boundary",
 "editor.cursorBlinking": "smooth",
 "editor.minimap.enabled": true,
 "editor.minimap.renderCharacters": false,
 "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
 "editor.codeLens": true,
 //eslint 代码自动检查相关配置
 "eslint.enable": true,
 "eslint.run": "onType",
 "eslint.options": {
 "extensions": [
  ".js",
  ".vue"
 ]
 },
 // 添加 vue 支持
 "eslint.validate": [
 "javascriptreact",
 "vue",
 "javascript",
 {
  "language": "vue",
  "autoFix": true
 },
 "html",
 {
  "language": "html",
  "autoFix": true
 }
 ],
 // #让prettier使用eslint的代码格式进行校验
 "prettier.eslintIntegration": true,
 // #去掉代码结尾的分号
 "prettier.semi": false,
 // #使用带引号替代双引号
 "prettier.singleQuote": true,
 // #让函数(名)和后面的括号之间加个空格
 "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
 // #这个按用户自身习惯选择
 "vetur.format.defaultFormatter.html": "js-beautify-html",
 // #让vue中的js按编辑器自带的ts格式进行格式化
 "vetur.format.defaultFormatter.js": "vscode-typescript",
 "explorer.confirmDelete": false,
 "vetur.format.defaultFormatterOptions": {
 "js-beautify-html": {
  "wrap_attributes": "force-aligned"
  // #vue组件中html代码格式化样式
 }
 },
 // 格式化stylus, 需安装Manta's Stylus Supremacy插件
 "stylusSupremacy.insertColons": false, // 是否插入冒号
 "stylusSupremacy.insertSemicolons": false, // 是否插入分好
 "stylusSupremacy.insertBraces": false, // 是否插入大括号
 "stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行
 "stylusSupremacy.insertNewLineAroundBlocks": false, // 两个选择器中是否换行
 "files.associations": {
 "*.cjson": "jsonc",
 "*.wxss": "css",
 "*.wxs": "javascript"
 },
 "emmet.includeLanguages": {
 "wxml": "html"
 },
 "minapp-vscode.disableAutoConfig": true,
 "window.menuBarVisibility": "visible",
 "git.enableSmartCommit": true,
 "git.autofetch": true,
 "liveServer.settings.donotShowInfoMsg": true,
 "[html]": {
 "editor.defaultFormatter": "vscode.html-language-features"
 },
 "javascript.updateImportsOnFileMove.enabled": "always",
 "workbench.colorTheme": "SynthWave '84",
 "editor.fontSize": 18,
 "search.followSymlinks": false,
 "workbench.sideBar.location": "right",
 "vscode_custom_css.policy": true,
 "vscode_custom_css.imports": [
 "file:///C:/Users/wongseedling/Desktop/vscode-transparent-glow/synthwave84.css",
 "file:///C:/Users/wongseedling/Desktop/vscode-transparent-glow/toolbar.css",
 "file:///C:/Users/wongseedling/Desktop/vscode-transparent-glow/vscode-vibrancy-style.css",
 "file:///C:/Users/wongseedling/Desktop/vscode-transparent-glow/enable-electron-vibrancy.js",
 ],
 // 高亮的颜色,emm暂时只支持这样写
 "wxmlConfig.activeColor": {
 "color": "#e5c07b"
 },
 // 是否禁用高亮组件
 "wxmlConfig.activeDisable": false,
 // 是否开启保存自动格式化
 "wxmlConfig.onSaveFormat": false,
 "wxmlConfig.format": {
 "brace_style": "collapse",
 "end_with_newline": false,
 "indent_char": "",
 "indent_handlebars": false,
 "indent_inner_html": false,
 "indent_scripts": "keep",
 "indent_size": 2,
 "indent_with_tabs": true,
 "max_preserve_newlines": 1,
 "preserve_newlines": true,
 "wrap_attributes": "force-expand-multiline"
 },
 // 高亮所忽略的组件数组
 "wxmlConfig.tagNoActiveArr": [
 "view",
 "button",
 "text",
 "icon",
 "image",
 "navigator",
 "block",
 "input",
 "template",
 "form",
 "camera",
 "textarea"
 ],
 "zenMode.restore": true,
 "breadcrumbs.enabled": true,
 "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
 "[wxml]": {
 "editor.defaultFormatter": "qiu8310.minapp-vscode"
 },
 "gitlens.advanced.messages": {
 "suppressLineUncommittedWarning": true
 },
 "javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
 "editor.formatOnPaste": false,
 "vsicons.presets.hideFolders": true,
 "editor.cursorStyle": "line-thin"
}

第二版本

{
 // 換行
 "editor.wordWrap": "on",
 // 是否允许自定义的snippet片段提示
 "editor.snippetSuggestions": "top",
 // vscode默认启用了根据文件类型自动设置tabsize的选项 不檢查縮進,保存后統一按設置項來設置
 "editor.detectIndentation": false,
 // 重新设定tabsize 代码缩进修改成4个空格
 "editor.tabSize": 2,
 // #每次保存的时候自动格式化
 "editor.formatOnSave": false,
 // #每次保存的时候将代码按eslint格式进行修复 使用eslint 風格使用standard 進行代碼規則限制
 "editor.fontWeight": "200",
 "editor.formatOnType": false,
 "workbench.iconTheme": "material-icon-theme",
 "git.confirmSync": false,
 "team.showWelcomeMessage": false,
 "window.zoomLevel": 0,
 "editor.renderWhitespace": "boundary",
 "editor.cursorBlinking": "smooth",
 "editor.minimap.enabled": true,
 "editor.minimap.renderCharacters": false,
 "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
 "editor.codeLens": true,
 //eslint 代码自动检查相关配置
 "eslint.enable": true,
 "eslint.run": "onType",
 "eslint.options": {
 "configFile": "D:/.eslintrc.js",
 "plugins": ["html"],
 "extensions": [
  ".js",
  ".vue"
 ]
 },
 "eslint.validate": [
 "javascript",
 "javascriptreact",
 "html",
 "vue"
],
 // #让prettier使用eslint的代码格式进行校验
 "prettier.eslintIntegration": true,
 // #去掉代码结尾的分号
 "prettier.semi": true,
 // #使用带引号替代双引号
 "prettier.singleQuote": true,
 // #让函数(名)和后面的括号之间加个空格
 "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
 // #这个按用户自身习惯选择 html格式化
 "vetur.format.defaultFormatter.html": "js-beautify-html",
 // #让vue中的js按编辑器自带的ts格式进行格式化
 "vetur.format.defaultFormatter.js": "vscode-typescript",
 "explorer.confirmDelete": false,
 "vetur.format.defaultFormatterOptions": {
 "js-beautify-html": {
  "wrap_attributes": "force-aligned"
  // #vue组件中html代码格式化样式
 }
 },
 // 格式化stylus, 需安装Manta's Stylus Supremacy插件
 "stylusSupremacy.insertColons": false, // 是否插入冒号
 "stylusSupremacy.insertSemicolons": false, // 是否插入分好
 "stylusSupremacy.insertBraces": false, // 是否插入大括号
 "stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行
 "stylusSupremacy.insertNewLineAroundBlocks": false, // 两个选择器中是否换行
 "files.associations": {
 "*.cjson": "jsonc",
 "*.wxss": "css",
 "*.wxs": "javascript"
 },
 "emmet.includeLanguages": {
 "wxml": "html"
 },
 "minapp-vscode.disableAutoConfig": true,
 "window.menuBarVisibility": "visible",
 "git.enableSmartCommit": true,
 "git.autofetch": true,
 "liveServer.settings.donotShowInfoMsg": true,
 "[html]": {
 "editor.defaultFormatter": "vscode.html-language-features"
 },
 "javascript.updateImportsOnFileMove.enabled": "always",
 "workbench.colorTheme": "Default Dark+",
 // 字體大小
 "editor.fontSize": 15,
 // 設置行高
 "editor.lineHeight": 20,
 "search.followSymlinks": false,
 "workbench.sideBar.location": "right",
 "vscode_custom_css.policy": true,
 "vscode_custom_css.imports": [
 "file:///C:/vscode-transparent-glow/synthwave84.css",
 "file:///C:/vscode-transparent-glow/toolbar.css",
 "file:///C:/vscode-transparent-glow/vscode-vibrancy-style.css",
 "file:///C:/vscode-transparent-glow/enable-electron-vibrancy.js"
 ],
 // 高亮的颜色,emm暂时只支持这样写
 "wxmlConfig.activeColor": {
 "color": "#e5c07b"
 },
 // 是否禁用高亮组件
 "wxmlConfig.activeDisable": false,
 // 是否开启保存自动格式化
 "wxmlConfig.onSaveFormat": false,
 "wxmlConfig.format": {
 "brace_style": "collapse",
 "end_with_newline": false,
 "indent_char": "",
 "indent_handlebars": false,
 "indent_inner_html": false,
 "indent_scripts": "keep",
 "indent_size": 2,
 "indent_with_tabs": false,
 "max_preserve_newlines": 1,
 "preserve_newlines": false,
 "wrap_attributes": "force-expand-multiline"
 },
 // 高亮所忽略的组件数组
 "wxmlConfig.tagNoActiveArr": [
 "view",
 "button",
 "text",
 "icon",
 "image",
 "navigator",
 "block",
 "input",
 "template",
 "form",
 "camera",
 "textarea"
 ],
 "zenMode.restore": true,
 "breadcrumbs.enabled": true,
 "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
 "[wxml]": {
 "editor.defaultFormatter": "qiu8310.minapp-vscode"
 },
 "gitlens.advanced.messages": {
 "suppressLineUncommittedWarning": true
 },
 "javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
 "editor.formatOnPaste": false,
 "vsicons.presets.hideFolders": true,
 "editor.cursorStyle": "line-thin",
 "editor.suggestSelection": "first",
 "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
 "editor.codeActionsOnSave": {
 "source.fixAll.eslint": true
 },
 "terminal.integrated.rendererType": "dom",
 "vscode_vibrancy.opacity": 0.5
}

第一项 VS code编辑使用eslint的规则去格式化代码

{
 "[javascript]": {
 "editor.defaultFormatter": "HookyQR.beautify"
 },
 "[html]": {
 "editor.defaultFormatter": "HookyQR.beautify"
 },
 "eslint.validate": [
 "javascript",
 "javascriptreact",
 "vue-html",
 {
  "language": "vue",
  "autoFix": true
 }
 ],
 "eslint.run": "onSave",
 "eslint.autoFixOnSave": true,
 "editor.codeActionsOnSave": {
 "source.fixAll.eslint": true
 },
}

VS code还可以指定ESLint的格式文件

"eslint.options": {
 "configFile": "E:/git/github/styleguide/eslint/.eslintrc.js",
 "plugins": ["html"]
},
"eslint.validate": [
 "javascript",
 "javascriptreact",
 "html",
 "vue"
]

第二项 使用 Prettier - Code formatter 根据eslint的规则去格式化代码

"[vue]": {
  "editor.defaultFormatter": "esbenp.prettier-vscode"
 },
 "[javascript]": {
  "editor.defaultFormatter": "esbenp.prettier-vscode"
 },
 "eslint.validate": [
  "javascript",
  "javascriptreact",
  "vue-html",
  {
   "language": "vue",
   "autoFix": true
  }
 ],
 "eslint.run": "onSave",
 "eslint.autoFixOnSave": true,
 "editor.codeActionsOnSave": {
  "source.fixAll.eslint": true
 },

 "prettier.printWidth": 200,
 "prettier.requireConfig": true,
 "prettier.semi": false,
 "prettier.useEditorConfig": false,
 "prettier.useTabs": true,
{
 // 換行
 "editor.wordWrap": "on",
 // 是否允许自定义的snippet片段提示
 "editor.snippetSuggestions": "top",
 // vscode默认启用了根据文件类型自动设置tabsize的选项 不檢查縮進,保存后統一按設置項來設置
 "editor.detectIndentation": false,
 // 重新设定tabsize 代码缩进修改成4个空格
 "editor.tabSize": 2,
 // #每次保存的时候自动格式化
 "editor.formatOnSave": false,
 // #每次保存的时候将代码按eslint格式进行修复 使用eslint 風格使用standard 進行代碼規則限制
 "editor.fontWeight": "200",
 "editor.formatOnType": false,
 "workbench.iconTheme": "vscode-icons-mac",
 "git.confirmSync": false,
 "team.showWelcomeMessage": false,
 "window.zoomLevel": 0,
 "editor.renderWhitespace": "boundary",
 "editor.cursorBlinking": "smooth",
 "editor.minimap.enabled": true,
 "editor.minimap.renderCharacters": false,
 "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
 "editor.codeLens": true,
 //eslint 代码自动检查相关配置
 "eslint.enable": true,
 "eslint.run": "onType",
 "eslint.options": {
 "configFile": "D:/.eslintrc.js",
 "plugins": [
  "html"
 ],
 "extensions": [
  ".js",
  ".vue"
 ]
 },
 "eslint.validate": [
 "javascript",
 "javascriptreact",
 "html",
 "vue"
 ],
 // #让prettier使用eslint的代码格式进行校验
 "prettier.eslintIntegration": true,
 // #去掉代码结尾的分号
 "prettier.semi": true,
 // #使用带引号替代双引号
 "prettier.singleQuote": true,
 // #让函数(名)和后面的括号之间加个空格
 "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
 // #这个按用户自身习惯选择 html格式化
 "vetur.format.defaultFormatter.html": "js-beautify-html",
 // #让vue中的js按编辑器自带的ts格式进行格式化
 "vetur.format.defaultFormatter.js": "vscode-typescript",
 "explorer.confirmDelete": false,
 "vetur.format.defaultFormatterOptions": {
 "js-beautify-html": {
  "wrap_attributes": "force-aligned"
  // #vue组件中html代码格式化样式
 }
 },
 // 格式化stylus, 需安装Manta's Stylus Supremacy插件
 "stylusSupremacy.insertColons": false, // 是否插入冒号
 "stylusSupremacy.insertSemicolons": false, // 是否插入分好
 "stylusSupremacy.insertBraces": false, // 是否插入大括号
 "stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行
 "stylusSupremacy.insertNewLineAroundBlocks": false, // 两个选择器中是否换行
 "files.associations": {
 "*.cjson": "jsonc",
 "*.wxss": "css",
 "*.wxs": "javascript"
 },
 "emmet.includeLanguages": {
 "wxml": "html"
 },
 "minapp-vscode.disableAutoConfig": true,
 "window.menuBarVisibility": "visible",
 "git.enableSmartCommit": true,
 "git.autofetch": true,
 "liveServer.settings.donotShowInfoMsg": true,
 "[html]": {
 "editor.defaultFormatter": "vscode.html-language-features"
 },
 "javascript.updateImportsOnFileMove.enabled": "always",
 "workbench.colorTheme": "SynthWave '84",
 // 字體大小
 "editor.fontSize": 15,
 // 設置行高
 "editor.lineHeight": 20,
 "search.followSymlinks": false,
 "workbench.sideBar.location": "left",
 "vscode_custom_css.policy": true,
 "vscode_custom_css.imports": [
 "file:///C:/vscode-transparent/synthwave84.css",
 "file:///C:/vscode-transparent/toolbar.css",
 "file:///C:/vscode-transparent/vscode-vibrancy-style.css",
 "file:///C:/vscode-transparent/enable-electron-vibrancy.js"
 ],
 // 高亮的颜色,emm暂时只支持这样写
 "wxmlConfig.activeColor": {
 "color": "#e5c07b"
 },
 // 是否禁用高亮组件
 "wxmlConfig.activeDisable": false,
 // 是否开启保存自动格式化
 "wxmlConfig.onSaveFormat": false,
 "wxmlConfig.format": {
 "brace_style": "collapse",
 "end_with_newline": false,
 "indent_char": "",
 "indent_handlebars": false,
 "indent_inner_html": false,
 "indent_scripts": "keep",
 "indent_size": 2,
 "indent_with_tabs": false,
 "max_preserve_newlines": 1,
 "preserve_newlines": false,
 "wrap_attributes": "force-expand-multiline"
 },
 // 高亮所忽略的组件数组
 "wxmlConfig.tagNoActiveArr": [
 "view",
 "button",
 "text",
 "icon",
 "image",
 "navigator",
 "block",
 "input",
 "template",
 "form",
 "camera",
 "textarea"
 ],
 "zenMode.restore": true,
 "breadcrumbs.enabled": true,
 "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
 "[wxml]": {
 "editor.defaultFormatter": "qiu8310.minapp-vscode"
 },
 "gitlens.advanced.messages": {
 "suppressLineUncommittedWarning": true
 },
 "javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
 "editor.formatOnPaste": false,
 "vsicons.presets.hideFolders": true,
 "editor.cursorStyle": "line-thin",
 "editor.suggestSelection": "first",
 "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
 "editor.codeActionsOnSave": {
 "source.fixAll.eslint": true
 },
 "terminal.integrated.rendererType": "dom",
 "vscode_vibrancy.opacity": 1,
 "npm.fetchOnlinePackageInfo": false
}

到此这篇关于自己的vscode-settings.json配置的文章就介绍到这了,更多相关vscode-settings.json配置内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • VSCode 使用Settings Sync同步配置(最新版教程,非常简单)

    之前无意中听到有人说,vsCode最大的缺点就是每次换个电脑或者临时去个新环境,就要配置一下各种插件,好不麻烦,以至于面试都不敢说自己用vsCode 说着无心,听着有意,因为我也发现了这个问题,索性认真找了一下网上的教程,发现网上的教程教程有些落后,过程复杂而且不容易成功,干脆自己去看最新文档,发现现在同步设置的方法简直不要太简单 准备工作 正常运行的VSCode,以及一个gitHub账号 安装Settings Sync 点击VSCode的插件栏搜索Settings Sync然后安装 安装完之后

  • VSCode 云同步扩展设置Settings Sync插件

    关于 Settings Sync扩展: Settings Sync可以同步你当前的VSCode配置环境,当你需要在其它的电脑工作时,您不用重头再来一遍.新机器登录一下就搞定了.再也不用折腾环境了. 大致原理:使用GitHub Gist来同步多台计算机上的设置,代码段,主题,文件图标,启动,键绑定,工作区和扩展. 环境版本: Visual Studio Code 1.36 Settings Sync 3.4.0 教程分为 初次使用 如何上传配置(#1) 已有配置 直接下载(#2) 初次使用: 在V

  • Maven默认中央仓库(settings.xml 配置详解)

    Maven的安装 安装Maven之前要确保已经安装好了jdk,并且配置好了环境变量JAVA_HOME.具体安装步骤如下: 1. 从apache网上下载maven项目的压缩包.下载地址为:http://maven.apache.org/download.html.比如现在最新的Maven版本是3.0.4,那么我下载好的安装文件就是apache-maven-3.0.4.zip. 2. 将下载后的压缩包解压到Maven的安装目录,比如说是D:\\develop,那么解压后就是D:\\develop\\

  • 自己的vscode-settings.json配置详解

    vscode从插件库里安装eslint和prettier 实现自动格式化 { // 是否允许自定义的snippet片段提示 "editor.snippetSuggestions": "top", // vscode默认启用了根据文件类型自动设置tabsize的选项 "editor.detectIndentation": false, // 重新设定tabsize "editor.tabSize": 2, // #每次保存的时候

  • tsconfig.json配置详解

    概述 如果一个目录下存在一个tsconfig.json文件,那么它意味着这个目录是TypeScript项目的根目录. tsconfig.json文件中指定了用来编译这个项目的根文件和编译选项. 一个项目可以通过以下方式之一来编译: 使用tsconfig.json 不带任何输入文件的情况下调用tsc,编译器会从当前目录开始去查找tsconfig.json文件,逐级向上搜索父目录. 不带任何输入文件的情况下调用tsc,且使用命令行参数--project(或-p)指定一个包含tsconfig.json

  • VSCode插件安装完成后的配置详解

    VSCode插件安装完成后,有些插件如果你想要完整的使用其中的功能得在settings.json中就行配置,接下来是我常用的一些配置 { "workbench.iconTheme": "vscode-icons", "window.zoomLevel": 0, "files.autoSave": "off", "eslint.runtime": "", "e

  • Mybatis中 XML配置详解

    Mybatis常用带有禁用缓存的XML配置 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd" > <configuration> <

  • Struts 2中的constant配置详解

    1.<constant name="struts.i18n.encoding" value="UTF-8" /> 指定Web应用的默认编码集,相当于调用 HttpServletRequest的setCharacterEncoding方法. 2.<constant name="struts.i18n.reload" value="false"/> 该属性设置是否每次HTTP请求到达时,系统都重新加载资源文

  • vue 项目常用加载器及配置详解

    本文介绍了vue 项目常用加载器及配置详解,分享给大家,具体如下: 1.安装sass: 1.1 由于sass-loader依赖于node-sass,所以在安装sass-loader的同时还需安装node-sass npm install --save-dev node-sass npm install --save-dev sass-loader 1.2 安装完成后修改 <style>标签: <style lang="scss"></style> 2

  • 基于SpringMVC接受JSON参数详解及常见错误总结

    最近一段时间不想使用Session了,想感受一下Token这样比较安全,稳健的方式,顺便写一个统一的接口给浏览器还有APP.所以把一个练手项目的前台全部改成Ajax了,跳转再使用SpringMVC控制转发.对于传输JSON数据这边有了更深的一些理解,分享出来,请大家指正. 在SpringMVC中我们可以选择数种接受JSON的方式,在说SpringMVC如何接受JSON之前,我们先聊聊什么是JSON.具体的定义我也不赘述了,在JavaScript中我们经常这样定义JSON 对象 var jsonO

  • vue-cli3全面配置详解

    本文介绍了vue-cli3全面配置详解,分享给大家,具体如下: vue-cli3-config 创建项目 配置环境变量 通过在package.json里的scripts配置项中添加--mode xxx来选择不同环境 在项目根目录中新建.env, .env.production, .env.analyz等文件 只有以 VUE_APP_ 开头的变量会被 webpack.DefinePlugin 静态嵌入到客户端侧的包中,代码中可以通过process.env.VUE_APP_BASE_API访问 NO

  • PyCharm+PyQt5+QtDesigner配置详解

    关于 最近要在python下做可视化界面的设计,想到之前用QtDesigner来画界面很是方便,当时画完之后都要手动在终端输入 pyuic5 -o 1.py 1.ui 来把.ui文件转换为.py的代码再进行编辑,不是很方便,联想到要是能在PyCharm下完成所有工作就好了,所以就有了这篇博客,简单记录下,不够详细的地方请谅解. 配置前提 PyCharm (这个不多说,官网下载安装) Anaconda 1.8.7(强烈安利,很好的python包管理平台,官网下载安装) python 3.6.5 (

随机推荐