This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# start_vllm_gpt-oss-20b.sh | |
# 一鍵檢查、建構環境與啟動 vLLM(openai/gpt-oss-20b)。 | |
# 需求:Ubuntu 24.04、CUDA 12.6、NVIDIA Driver、Python 3.10+ | |
# 會自動: | |
# - 檢查/安裝缺的系統開發套件(含 math.h) | |
# - 檢查/安裝 Python 3.12(若不存在) | |
# - 安裝 uv(若不存在,使用 pip) | |
# - 創建虛擬環境(若不存在,使用 uv venv) | |
# - 安裝 vLLM 及其依賴(特定版本與 index-url) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rime dictionary | |
# encoding: utf-8 | |
--- | |
name: luna_pinyin.emoji | |
version: "2017.02.10" | |
sort: by_weight | |
use_preset_vocabulary: true | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Global] | |
mimic model = TimeCapsule6,106 | |
[Time Machine] | |
path = /mnt/TimeCapsule | |
time machine = yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set clipboard=unnamedplset number | |
syntax on | |
set tabstop=2 " The width of a TAB is set to 4. | |
set shiftwidth=2 " Indents will have a width of 4. | |
set softtabstop=2 " Sets the number of columns for a TAB. | |
set expandtab " Expand TABs to spaces. | |
set ai | |
set clipboard=unnamedplus |