ubuntu常见的一些指令用法

安装deb包:
sudo dpkg -i xxxx.deb

win10 ubuntu 双系统时间不同的修改方法:
timedatectl %查看时间
sudo timedatectl set-local-rtc 1 %修改时间
timedatectl %查看时间

寻找带net的进程并杀死
ps -e | grep Net % ps -e 表示显示所有的进程,grep Net表示找名字中带Net的进程,并显示其进程号
sudo kill -9 853 %kill -9表示强制关闭,之后跟的是进程号

ubuntu install pip:
sudo apt-get install python-pip

ubuntu install netease music:
http://music.163.com/#/download
sudo dpkg -i netease-cloud-music_1.0.0_amd64_ubuntu16.04.deb
if wrong:
sudo apt-get -f install
sudo dpkg -i netease-cloud-music_1.0.0_amd64_ubuntu16.04.deb

ubuntu run github project:
for example,https://github.com/soumith/ganhacks.git
git clone https://github.com/soumith/ganhacks.git
(sudo apt install git)

putty winscp project
命令行设置参数:

python xxx.py --images /path/to/images

运行

python xxx.py 

检测linux系统中是否已经安装了pip

pip --version

python 报错: ImportError: cannot import name imread
有可能是没有安装scipy
也有可能需要安装需要install PIL or Pillow

pip install Pillow

你可能感兴趣的:(ubuntu)