admin 管理员组

文章数量: 887021

官网提供了ChatGPT的python测试代码,代码非常简单,但是在运行的时候遇到了一些小问题,在ubuntu环境下使用python安装openai包出错,最后使用anaconda3安装成功。下面是具体安装过程:

安装anaconda3

$ wget https://repo.anaconda/archive/Anaconda3-2022.10-Linux-x86_64.sh

$ bash Anaconda3-2022.10-Linux-x86_64.sh

Please, press ENTER to continue:回车

view agreement --more--:按'q'直接完成

Do you accept the license terms? [yes|no]:yes

[/home/ubuntu/anaconda3]: /home/ubuntu/mydisk/anaconda3

Do you wish the installer to initialize Anaconda3 by running conda init? [yes|no]: yes

配置anacond环境:

$ conda create -n ai python=3.11

$ conda activate ai

$ conda install -c conda-forge openai(如果运行失败再试一次,我是第二次成功的)

创建ChatG

本文标签: 环境 测试 ChatGpt python