ubuntuビューのファイルサイズ、使用スペース

1現在のフォルダディレクトリサイズを表示する

sudo du -h --max-depth=1
#整个目录
du -h

2サイズ順に並べられた上位10個のファイルを表示する

sudo find /[替换dir] -type f -print0 | xargs -0 du -h | sort -rh | head -n 10
pycharm的strongdata 直接rm和anacond/pkgs中 conda clean -a 清理

3 conda create delete環境

conda create -n rcnn python=3.6  #如果faid则conda update
conda remove -n rcnn --all  
conda create -n tf --clone rcnn #重命名就是clone 再remove
63の元の記事を公開 賞賛7 ビュー3396

おすすめ

転載: blog.csdn.net/weixin_44523062/article/details/105434374