raynehe

导航

常用语句

tensorboard显示不全
image:

tensorboard --samples_per_plugin=images=1000000 --logdir

scalars:

tensorboard --samples_per_plugin=scalars=1000000 --logdir

pip上交换源

 -i https://mirror.sjtu.edu.cn/pypi/web/simple 

中科院

 -i  https://pypi.mirrors.ustc.edu.cn/simple/

查看目录内文件夹大小

du -h --max-depth=1 | sort -hr

查看目录内文件大小

ls -lh

bash Permission Denied
r -read
w -write
x -execute

chmod +x

安装.deb文件(装完可以删除.deb文件)

sudo dpkg -i *.deb

确保pip安装的是和当前Python解释器匹配的环境

python -m pip install

kill某个进程

ps aux | grep 进程名
kill -9 PID

posted on 2024-05-07 16:52  RRRayne  阅读(115)  评论(0)    收藏  举报