Pycharm 2020.1 版配置优化的详细教程
(编辑:jimmy 日期: 2024/11/17 浏览:3 次 )
手残更新Pycharm 2020.1 版时将配置文件都删除了"text-align: center">
安装教程参考:idea2020.1最新版永久破解/pycharm也可用(步骤详解)
编辑器字体
设置路径:
File | Settings | Editor | Font
Python 文件模板
设置路径:
File | Settings | Editor | File and Code Templates
# -*- coding: utf-8 -*- """ @Time : ${DATE} @Author : ${USER} @File : ${NAME} @Description : """插件
设置路径:
File | Settings | Plugins
安装方式:直接在Marketplace搜索安装;【Ps:安装速度慢且很可能失败】
官网下载插件安装:https://plugins.jetbrains.com/pycharm
插件
- Atom Material Icons
- Material Theme UI
- (个人感觉还没自带主题好看"text-align: center">
- Rainbow Brackets
- Grep Console
设置输出信息配色:
…
autopep8 代码格式
设置路径:
File | Settings | Tools | External Tools
- Name: 可以任意输入,例如
autopep8
- Program:
autopep8 或者 autopep8.exe 绝对路径
- Parameter:
--in-place --aggressive --aggressive $FilePath$
- Working directory:
$ProjectFileDir$
- Output filters:
$FILE_PATH$:$LINE$:$COLUMN$:.*
切换终端powershell
设置路径:
File | Settings | Tools | Terminal
总结
下一篇:解决阿里云邮件发送不能使用25端口问题