## 安装sogou输入法
参考:[解决Ubuntu 18.04中文输入法的问题,安装搜狗拼音](https://blog.csdn.net/fx_yzjy101/article/details/80243710)
```
sudo apt-get install fcitx-bin
sudo apt-get install fcitx-table
```
## 安装visual studio code
参考:[Getting Started with Python in VS Code](https://code.visualstudio.com/docs/python/python-tutorial)
```
opening the Command Palette (Ctrl+Shift+P),
start typing the Python: Select Interpreter command
```
## 安装MINICONDA
参考:[Installing on Linux](https://conda.io/docs/user-guide/install/linux.html)
```
bash Miniconda3-latest-Linux-x86_64.sh
cd
gedit .bashrc
+ export PATH=/home/f/miniconda3/bin:$PATH
source .bashrc
```
添加 conda 的镜像服务器,参考:[Python 环境的配置及相关工具的安装](https://blog.csdn.net/weixin_42066885/article/details/80323173)
```
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
```