Tips for OpenmmLab usage

MMCV 1.reinstall mmcv or mmcv-full after run pip uninstall mmcv mmcv-full will not install mmcv, you should use pip install --no-cache-dir --force-reinstall mmcv-full==1.4.0

January 8, 2024 · 1 min · 23 words · lvsolo

Tips for hugo themes and this blog usage

How to auto pull the newest master branch from git? use crontab -e to set the periodic task, in this case , it’s the auto_pull_from_git.sh script. The date format? the date format must be ****--, for example 2023-12-9 should be 2023-12-09. update the hugo version to latest: amd64: wget https://github.com/gohugoio/hugo/releases/download/v0.121.2/hugo_extended_0.121.2_linux-amd64.deb sudo dpkg -i hugo_extended_0.121.2_linux-amd64.deb arm64: wget https://github.com/gohugoio/hugo/releases/download/v0.121.2/hugo_extended_0.121.2_linux-arm64.deb sudo dpkg -i hugo_extended_0.121.2_linux-arm64.deb two ways to create the blog website: 4.1 when using ngrok...

December 9, 2023 · 1 min · 138 words · lvsolo