ubuntu安装pandora-gpt

因为pandora要3.7以上的版本,推荐MINICANDA,

1,在清华镜像网站上下载miniconda3安装的脚本文件

sudo wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py38_4.9.2-Linux-x86_64.sh

2,给.sh文件添加x执行权限

sudo chmod u+x Miniconda3-py38_4.9.2-Linux-x86_64.sh

3,运行脚本文件

sudo ./Miniconda3-py38_4.9.2-Linux-x86_64.sh

4.一直按enter,直到看完所有License Agreement的内容,输入 yes 接受条款

5,默认安装在/root/miniconda3下,也可以自定义安装路径,比如这里我自定义为自己的主目录(见红色框),回车

6,同意初始化

7,设置环境变量
注意:将下面/home/scarlett/miniconda3替换为自己的安装路径!

echo 'export PATH="/home/scarlett/miniconda3/bin:$PATH"'>> ~/.bashrc
source ~/.bashrc

8,输入conda info

9.安装pandora,阿里云镜像

pip install -i https://mirrors.aliyun.com/pypi/simple pandora-chatgpt

你可能感兴趣的:(ubuntu,gpt,linux)