# chobits **Repository Path**: acgist/chobits ## Basic Information - **Project Name**: chobits - **Description**: 人形电脑天使心 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-09-08 - **Last Updated**: 2025-09-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 人形电脑天使心 叽~🍵速通💃💃🤡🤡 ----

GitHub stars Gitee  stars
GitHub Workflow GitHub release GitHub code size GitHub license

## 依赖 |名称|版本|官网| |:--|:--|:--| |SDL2|2.30.0|https://github.com/libsdl-org/SDL| |ffmpeg|6.1.1|https://github.com/FFmpeg/FFmpeg| |libtorch|2.8.0|https://github.com/pytorch/pytorch| ``` # linux sudo apt install ffmpeg sudo apt install libsdl2-dev https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.8.0%2Bcpu.zip https://download.pytorch.org/libtorch/cu128/libtorch-shared-with-deps-2.8.0%2Bcu128.zip # windows vcpkg install sdl2 vcpkg install ffmpeg https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.8.0%2Bcpu.zip https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.8.0%2Bcpu.zip https://download.pytorch.org/libtorch/cu128/libtorch-win-shared-with-deps-2.8.0%2Bcu128.zip https://download.pytorch.org/libtorch/cu128/libtorch-win-shared-with-deps-debug-2.8.0%2Bcu128.zip ``` ## 编译 ``` # linux mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Debug|Release .. make -j 8 # make install mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Debug|Release .. cmake --build . -j 8 cmake --build . --parallel 8 # cmake --install . # windows mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Debug|Release -T host=x64 -A x64 -G "Visual Studio 17 2022" .. cmake --config Debug|Release --build . -j 8 cmake --config Debug|Release --build . --parallel 8 # cmake --install . ```