Use ChatGPT advanced series to turn chatgpt into your own assistant

Create a python virtual environment

sudo apt-get install python3-venv

python3 -m venv llamaindex

Activate the virtual environment: source myenv/bin/activate

Check for activation: python --version

Exit the virtual environment: deactivate

Installation preparation

pip install wheel llama-index

Install jupyter notebook debug

pip install torch jupyter notebook

jupyter notebook --port=

Guess you like

Origin blog.csdn.net/wenxueliu/article/details/129917343