インストールツールのダウンロード#
- GitHub Proxy | file-proxy
- 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
追加の Windows プラットフォーム#
- 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