5.14自我总结
一.python插件插件相关技巧汇总
安装在cmd上运行
#比如安装
安装:wxpy模块(支持 Python 3.4-3.+ 以及 2.7 版本):pip3 install wxpy
安装 pillow模块:pip3 install pillow
安装 pyecharts模块:pip3 install pyecharts==0.5.1
#pip3 是指在PIP3中查找并安装下面的插件
#pyecharts==0.5.1是指插件的版本,如果不填写后面的.0.5.1,默认安装最新的
#如果你在的地方网络不行,你可以在安装前输入 --timeout=100,当中100是延迟时间
#我们拿pyecharts举例你网络不好可以设置pip3 --timeout=100 install pyecharts==0.5.1
#如果你碰到插件有了但是版本老了或者新了用不习惯想要用回你喜欢的,你可以先卸载插件再重新安装
#卸载插件拿pyecharts举例你可以在CMD中输入pip3 uninstall pyecharts 再输入Y再重新安装
二.PyCharm的安装注意事项
1.激活码
可以网上找
2.对于当中的Python的设置
对于python的路径不能选择系统默认,要手动输入python.exe的路径
3.字体设置以及快捷设置
点击File→setting或者alt+ctrl+s
4.常用快捷
快速复制粘贴整行CTRL+D
使用快捷键前
print('hello world')
使用快捷键后
print('hello world')
print('hello world')
删除行CTRL+Y
使用快捷键前
print('hello world')
使用快捷键后
向后缩进Tab
使用快捷键前
print('hello world')
使用快捷键后
print('hello world')
向前缩进shift+Tab
使用快捷键前
print('hello world')
使用快捷键后
print('hello world')
移至一行代码最前Home
移至一行代码最后END
运行shilft+f10 这里我经常犯错,运行时候默认是运行你最后一次运行的那个程序,千万别忘了
选择运行alt+shilft+f10
三.markdown文件书写格式
1.文本段落编写
a)#→宫格建→加输入内容→回车键,其中#表示标题一,##表示标题二以此类推至######为止
b)或者选中要修改文本的文本格式按ctrl+1至6对文本进行文本格式快速修改
c)以及ctrl++或者-进行文本级别的调整
2.文本字体格式编写
1.2.1.加粗
a)选中输入内容输入内容→ctrl+b
b)在加粗字体左右两侧输入**
1.2.2.下划线
a)选中输入内容输入内容→ctrl+u
b)在文本两侧分别输入右侧为/</u>
左侧为<u>
1.2.3.斜体
a)选中输入内容输入内容→ctrl+i
b)在加粗字体左右两侧输入*
1.2.4高光
a)首先点击文件→在偏好设置里”高光“打钩→选中输入内容输入内容→再文字左右两侧都输入==
1.2.5.删除线
a)选中输入内容输入内容→alt+shift+5
b)在加粗字体左右两侧输入~~
1.2.6.上标
a)首先点击文件→在偏好设置里”上标“打钩→选中输入内容输入内容→再文字左右两侧都输入^
1.2.7.下标
a)首先点击文件→在偏好设置里”上标“打钩→选中输入内容输入内容→再文字左右两侧都输入~
1.2.8.超链接
a)选中输入内容输入内容→ctrl+k在()中输入超链接的网址或者路径
b)在加粗字体左右两侧输入[],且在“]”的右侧输入()且在()中输入超链接的网址或者路径
3.查看或者修改样式
a)ctrl+/
4.插入图片
a)ctrl+shift+i且在提示中选择图片路径,如:
b)!→[]→()且在提示中选择图片路径
5.导入编程界面
a)在段落的开头输入```,后面输入你想要导入的程序他会自动联想到你需要的编程界面如下代码为
我用中文输入法来演示
···python
print(“Hello Word”)
···
print("Hello word")
6.快捷键储存
6.1.保存
a)ctrl+s
6.2.另存为
a)ctrl+shift+s
7.markdown插入表格语法
举例
如表格标题为,姓名,班级,成绩
标题内的内容为,yang,a班,100
我们要在markdow文件中插入表格
如
姓名 | 班级 | 成绩 |
---|---|---|
yang | a班 | 100 |
他的源代码
姓名|班级|成绩
-|-|- 来设置表格的文本的样式(默认左对齐)
yang|a班|100
如果样式中姓名为居中,班级为左对齐,成绩为右对齐,中间这一行为
:-:|:-|-:
8.让里面有些语法无效
例如<v>
可以在左右两侧加3个点
四.jupyter notebook的插件安装及文本格式修改
1.jupyter notebook拓展插件安装
启动jupyter notebook : 打开控制台输入命令 jupyter notebook
安装Jupyter notebook extensions扩展插件:
1、pip install jupyter_contrib_nbextensions
或者
1、pip install https://github.com/jupyter-contrib/jupyter_contrib_nbextensions/tarball/master
2、jupyter contrib nbextension install --user
3、安装后重新启动控制台窗口: 再次执行命令jupyter notebook 便可以看到在web端看到如下窗口:
2.部分常用插件介绍:
VIM binding:该插件使得jupyter notebook集成VIM环境,可以使用VIM所有快捷键进行撸代码;
Codefolding :既可以对标题进行折叠,也可以对代码进行折叠,观看方便;
ExecuteTime : jupyter支持分步调试,所以该插件支持显示每步的执行时间;
Notify:这是jupyter Notebook中的通知机制,耗时任务当离开时完成时可自动提示。
jupyter notebook主题背景和字体更改
3.更改jupyter的样式
舒适的撸代码主题背景无论对于眼睛还是心情都有重要作用,接下来我们就安装选择适合自己的主题背景和字体
在控制台下用pip 安装jupyter-themes : pip install --upgrade jupyterthemes
使用如下命令查看所有可用的主题:
在CMD中输入jt -l
Available Themes:
chesterish
grade3
monokai
oceans16
onedork
solarizedd
solarizedl
再可以使用如下命令选择适合自己的主题背景
username$ jt -t grade3(主题名称)
1
更改字体可以通过如下命令
username$ jt -f inconsolata(字体名称)
4.常用各种命令
options | arg | default |
---|---|---|
Usagehelp | -h | – |
List Themes | -l | – |
Theme Name to Install | -t | – |
Code Font | -f | – |
Code Font-Size | -fs | 11 |
Notebook Font | -nf | – |
Notebook Font Size | -nfs | 13 |
Text/MD Cell Font | -tf | – |
Text/MD Cell Fontsize | -tfs | 13 |
Pandas DF Fontsize | -dfs | 9 |
Output Area Fontsize | -ofs | 8.5 |
Mathjax Fontsize (%) | -mathfs | 100 |
Intro Page Margins | -m | auto |
Cell Width | -cellw | 980 |
Line Height | -lineh | 170 |
Cursor Width | -cursw | 2 |
Cursor Color | -cursc | – |
Alt Prompt Layout | -altp | – |
Alt Markdown BG Color | -altmd | – |
Alt Output BG Color | -altout | – |
Style Vim NBExt | -vim | – |
Toolbar Visible | -T | – |
Name & Logo Visible | -N | – |
Reset Default Theme | -r | – |
Force Default Fonts | -dfonts | – |
5.展示一种主题背景和格式:
1、 执行命令: jt -f inconsolata -t grade3
2、 执行命令:jt -t oceans16 -f inconsolata