ubuntu setup pytorch env

clear cuda old driver sudo apt-get purge nvidia-* sudo apt-get purge cuda* sudo apt autoremove install cuda go to: https://developer.nvidia.com/cuda-

iohannes iohannes Published on 2025-03-18

ubunu支持中文

apt install -y language-pack-zh-han* dpkg-reconfigure locales select: C.UTF-8 UTF-8 reboot

iohannes iohannes Published on 2025-03-18

urdf规范简介

起源 URDF全称(United Robotics Description Format)统一机器人描述格式,是一个XML语法框架下用来描述机器人的语言格式. 详细文档参见: https://wiki.ros.org/urdf/XML</

iohannes iohannes Published on 2025-03-18

vnc connect debain

install desktop apt update apt install --no-install-recommends ubuntu-desktop nano install vnc server apt install gnome-panel gnome-settings-daemon m

iohannes iohannes Published on 2025-03-18

v2ray client

install v2ray core curl -Ls https://mirrors.v2raya.org/go.sh | bash systemctl disable v2ray --now install v2raya wget -qO - https://apt.v2raya.mzz.pub

iohannes iohannes Published on 2025-03-18

vscode debug spring boot

{ "configurations": [ { "type": "java", "name": "Spring Boot", "request": "launch", "cwd":

iohannes iohannes Published on 2025-03-18

vscode打开gbk项目乱码

setting.json { "files.autoGuessEncoding": true }

iohannes iohannes Published on 2025-03-18

vscode调试vite项目

launch.json { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more informat

iohannes iohannes Published on 2025-03-18

vscode自动格式化代码

settings.json { "editor.formatOnType": true, "editor.formatOnSave": true, "editor.formatOnPaste": true, "editor.tabSize": 2, "editor.codeAct

iohannes iohannes Published on 2025-03-18

vue 中reactive 相关简介

Proxy const obj = new Proxy(target, handler); Vue3 将使用 ES6的Proxy 作为其观察者机制,取代之前使用的Object.defineProperty target: 被代理对象。 handler: 是一个对象,声明了代理target的一些

iohannes iohannes Published on 2025-03-18
Previous Next