注意,本文的目的不是大而全地记录过程,只是记录一些搭建过程中反常识的环节。笔者是Linux+Python的大大大新手,敬请大神不喜勿喷,如果能指教两句就再好不过了。
1.安装搜狗输入法:
2.打开Anaconda-Navigator:
在命令行前有(base)字样的时候,在命令行中输入Anaconda-Navigator。
3.改善Linux滚轮体验(加速滚轮)
引用自这里
sudo apt-get install imwheel
创建新的文件
nano ~/.imwheelrc
(nano编辑器有的Linux可能没有,可以使用原文中提到的gedit)
然后在里面粘贴这些东西
".*"
None, Up, Button4, 3
None, Down, Button5, 3
Control_L, Up, Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L, Up, Shift_L|Button4
Shift_L, Down, Shift_L|Button5
按ctrl+x,再按Y保存退出。
其中,Button4和Button5 貌似分别是向前向后滚动,后面跟着的“3”表示一次滚动三行。
这没有一个标准,舒服就行,我最后设置的是两行。
4. Jupyter Notebook 高亮同一变量
即 (Jupyter Notebook Matched Highlighter)
安装方法:建议使用conda安装,也可以直接pip安装
conda install -c conda-forge jupyter_highlight_selected_word
然后:
if version(Jupyter>=4.2):
jupyter nbextension install --py jupyter_highlight_selected_word
else:
return('这年头居然还有人在用这么低版本的Jupyter Notebook!')
然后
jupyter nbextension enable highlight_selected_word/main
最后,大功告成~
5. Install Anaconda-navigator
6. 解决apt-get不能使用的问题
具体表现为:
sudo apt-get install gnome-shell-extensions
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?
解决方法
杀死一切使用apt-get的程序
sudo killall apt apt-get