下载
一般使用选择Miniconda即可,Download
安装
一路确定,然后配置环境变量
C:\ProgramData\miniconda3\Library\bin
接受 Anaconda 仓库的服务条款
在当前项目的终端,依次复制并运行下面这三条命令:
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/msys2
根本解决方案(强烈建议):切换到免费的 conda-forge 频道
为了避免以后再次遇到类似的授权或网络问题,最一劳永逸的方法是配置 conda 默认使用由开源社区维护、完全免费的 conda-forge 频道
在你成功创建并激活环境后,运行以下两条命令来配置:
# 1. 设置 conda-forge 为最高优先级频道
conda config --add channels conda-forge
# 2. 设置严格频道优先级,避免混乱
conda config --set channel_priority strict
AI
# 创建名为 aider-env 的环境,指定 Python 3.11
conda create -n aider-env python=3.11 -y
# 激活环境
conda activate aider-env
# 确认 Python 版本
python --version
# 安装 aider-chat
pip install aider-chat
# 安装 litellm(用于 Claude Code 连接)
pip install 'litellm[proxy]'
# 确保 Ollama 正在运行(另一个终端)
# ollama run qwen3.5
# 使用 Aider 连接本地模型
aider --model ollama/qwen3.5
Conda 常用命令
# 查看所有环境
conda env list
# 激活环境
conda activate aider-env
# 退出环境
conda deactivate
# 删除环境(如果需要重来)
conda remove -n aider-env --all
# 列出环境中的包
conda list -n aider-env
# 克隆旧环境为新环境
conda create -n 新环境名 --clone 旧环境名
# 2. 删除旧环境
conda remove -n 旧环境名 --all
MOSS-TTS-Nano
https://github.com/OpenMOSS/MOSS-TTS-Nano
MP3转WAR
https://www.freeconvert.com/zh/mp3-to-wav/download