安装下载工具#
- GitHub 代理 | 文件代理
- 安装 aria2,并添加到环境变量 Path
- 安装 Aria2 Explorer chrome 浏览器拓展
- 可以
aria2c --enable-rpc
配合 Aria2 Explorer 进行下载
安装 conda#
- 下载 miniconda:清华镜像 | 官网
conda config --set show_channel_urls yes
- (Windows)
notepad.exe $env:HOMEPATH.condarc
- (Linux)
nano .condarc
确保是 清华镜像
常用命令示例#
- 创建环境:
conda create -n llama -c conda-forge python -y
- 查看环境:
conda info --env
- 删除环境:
conda remove -n py36 --all
- 安装 conda 包:
conda install -n llama compilers make -c conda-forge -y
- 安装 pip 包:
conda run -n llama pip install llama-cpp-python[server] -i https://pypi.tuna.tsinghua.edu.cn/simple
- 清理缓存:
conda clean --all
- 安装 paddlepaddle:
conda install paddlepaddle-gpu==2.4.2 cudatoolkit=11.6 -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/Paddle/ -c conda-forge
创建新环境示例#
conda create -n tts_edge python -c conda-forge
conda activate tts_edge
python -m pip install edge-tts -i https://pypi.tuna.tsinghua.edu.cn/simple
edge-tts --list-voices
edge-tts --voice zh-CN-XiaoxiaoNeural --text "你好!有什么我可以帮助你的吗?" --write-media hello.mp3 --write-subtitles hello.vtt
回滚环境#
conda list --revisions
conda install --revision 0
使用 mamba 加速#
conda create -n something_fuck -c conda-forge mamba
conda activate something_fuck
mamba install -c bioconda bcftools
构建包#
mamba create -n build -c conda-forge conda-build
source activate build
conda config --set anaconda_upload yes
附加 win 平台#
- w64devkit-fortran: 不支持 nvcc
- VS BuildTools: 生成工具、CMake; CRT、ATL、MFC 的 SDK
conda create -n llama libcublas cuda-toolkit git -c nvidia -c conda-forge
conda activate llama
cd D:\llama
git clone --depth=1 -b master --single-branch https://github.com/ggerganov/llama.cpp.git
# 修改 Makefile,添加 -I$(CONDA_PREFIX)/include 和 -L$(CONDA_PREFIX)/lib
# git add . && git commit -m 'add conda Path'
& "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\LaunchDevCmd.bat"
%windir%\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy ByPass -NoExit -Command "& 'C:\Users\11248\miniconda3\shell\condabin\conda-hook.ps1' ; conda activate 'C:\Users\11248\miniconda3' "
# git checkout . && git clean -xdf