pip安装与卸载
#安装
pip3 install opencv-python
pip3 install python-numpy
pip2 install scipy
pip2 install sklearn
pip2 install pandas
#卸载
sudo pip uninstall xxxxx
批量安装
#批量安装
pip install -r requirements.txt
Ubuntu软件的安装与卸载
sudo apt-get install g++
sudo apt-get install vim
sudo apt-get --purge remove 包名
sudo apt-get remove 包名
--purge
是可选项,写上这个属性是将软件及其配置文件一并删除