
正文
PyCharm 基础设置
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
设置主题:File -- Settings -- Editor -- Color & Fonts -- Font -- Scheme 设置为 Darcula
设置字体:File -- Settings -- Editor -- Color & Fonts -- Font -- 设置字体为 Consolas,字体大小为 18
设置控制台字体:File -- Settings -- Editor -- Color & Fonts -- Console Font -- 设置字体为 Consolas,字体大小为 18
设置 Python 解释器:File -- Settings -- Project:Python -- Project Interpreter -- 自行选择 Python2 或 Python3
关闭代码风格检查:File -- Settings -- Editor -- Inspections -- Python -- PEP 8 开头的两项取消勾选
关闭拼写检查:File -- Settings -- Editor -- Inspections -- Spelling -- Typo -- 取消勾选
设置文件头:File -- Settings --Editor -- Code Style -- File and Code Templates -- Python Script -- 设置如下内容
#!/usr/bin/env python
#-*- coding:utf-8 -*-
# Create by panzekai
# Create on ${DATE}





