ChatGPT进阶系列之用把 chatgpt 变为自己的助手

创建 python 虚拟环境

sudo apt-get install python3-venv

python3 -m venv llamaindex

激活虚拟环境:source myenv/bin/activate

检查是否激活:python --version

退出虚拟环境:deactivate

安装准备

pip install wheel llama-index

安装 jupyter notebook 调试

pip install torch jupyter notebook

jupyter notebook --port=

猜你喜欢

转载自blog.csdn.net/wenxueliu/article/details/129917343