会画画的聊天机器人安装教程 | 后端接了Stable Diffusion
软件下载:https://pan.baidu.com/s/1_eugdD31j50RqbeZ86MoTg?pwd=856c
Python基本配置和性能优化:https://www.bilibili.com/video/BV1Qa4y1K7cn/
安装过程:
点击Anaconda Prompt图标进入conda命令行窗口
创建虚拟环境
conda create -n openllm python=3.10
激活虚拟环境(如果你关闭过窗口,下次再来运行程序就必须重新激活虚拟环境)
conda activate openllm
设置pip源:(以前设置过的同学就不用设置了)
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
安装最新的torch,以PyTorch的Start locally页面为准:
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
切换到项目所在目录(以我电脑上的位置为例: e:\openProject\visual-openllm)
e:
cd openProject\visual-openllm
安装依赖包
pip install -r requirements.txt
运行:
python run.py