-
使用cmd下载远程服务器的文件,其中,root为username,后面为服务器地址,文件地址,./为下载到当前目录下:
scp root@192.168.40.99:/home/nest/xc/…/img_return.png ./
-
上传本地文件至服务器,把地址互换即可
scp ./ root@192.168.40.99:/home/nest/xc/…/img_return.png
-
在ubuntu中,使用pip安装失败,先装cython,再装其他的第三方库试试
pip install cython
pip install basicsr -
在mmseg中,自定义数据集之后,报错:Dataset is not in the dataset registry,依次运行一下命令,重新配置项目。
python setup.py install
pip install -v -e . -
查看文件大小,并设定文件深度和排除文件夹
du -h --max-depth=1
du -sh
du -h --max-depth=1 --exclude test
【日常TIP】——小记
于 2024-05-29 21:00:38 首次发布