【AI 大模型】OpenAI 接口调用 ② ( MacOS 中进行 OpenAI 开发 | 安装 openai 软件包 | PyCharm 中开发 Python 程序调用 OpenAI 接口 )

CSDN 2024-08-12 12:01:03 阅读 70

文章目录

一、安装 Python SDK1、检查 Python 版本2、安装 Python - 安装包安装3、安装 Python - Homebrew 安装

二、安装 OpenAI 软件包三、安装 PyCharm四、导入 OpenAI 库并进行开发

一、安装 Python SDK


1、检查 Python 版本

打开 MacOS 的 命令行终端 :

进入 MacOS 的 " 启动台 " , 选择 " 其它 " 选项 ,

在这里插入图片描述

选择 " 终端 " 选项 , 打开终端 ;

在这里插入图片描述

在终端中输入

<code>python --version

python3 --version

选项 , 可以查看当前安装的 Python 或 Python3 的版本 ,

在这里插入图片描述

执行 第二条命令 , 发现当前的 Python 版本是 Python 3.12.2 ;

开发 OpenAI 建议使用 Python3 ;

2、安装 Python - 安装包安装

到 Python 官方网站 https://www.python.org/ 下载 Python ,

在这里插入图片描述

在下载页面上,选择适用于MacOS的安装程序 , 建议选择最新版本的 Python 3 安装程序进行下载 , Python 2.x 已经过时且不再被官方支持 ;

下载完成后 , 找到 " 下载 " 目录中的的 pkg 文件 , 双击 pkg 文件 启动安装程序 ;

按照安装程序中的指示进行安装 , 一般选择默认安装设置即可 , 会自动将 Python 添加到 环境变量 中 ;

安装完成后 , 执行

<code>python3 --versio

命令 , 查看是否安装完成 ;

3、安装 Python - Homebrew 安装

参考 【FFmpeg】在 Mac OS 中编译 FFmpeg 源码 ① ( homebrew 安装 | 通过 gitee 源安装 homebrew | 安装 FFmpeg 编译所需的软件包 ) 博客 , 安装 Homebrew ;

安装完 Homebrew 后 , 可执行如下命令 , 安装 Python3 ;

brew install python3

二、安装 OpenAI 软件包


执行

pip3 install openai

命令 , 安装 OpenAI 软件包 ;

如果安装的时 Python 2.x , 则使用 pip install openai 命令进行安装 ;

在这里插入图片描述

执行时 报 如下错误 :

<code>hsl@hanshulangdeAir ~ % pip3 install openai

error: externally-managed-environment

× This environment is externally managed

╰─> To install Python packages system-wide, try brew install

xyz, where xyz is the package you are trying to

install.

If you wish to install a non-brew-packaged Python package,

create a virtual environment using python3 -m venv path/to/venv.

Then use path/to/venv/bin/python and path/to/venv/bin/pip.

If you wish to install a non-brew packaged Python application,

it may be easiest to use pipx install xyz, which will manage a

virtual environment for you. Make sure you have pipx installed.

note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.

hint: See PEP 668 for the detailed specification.

[notice] A new release of pip is available: 24.0 -> 24.1.2

[notice] To update, run: python3.12 -m pip install --upgrade pip

在这里插入图片描述

尝试在命令后面添加 --break-system-packages 参数选项 , 即可解决上述问题 ;

执行

<code>pip3 install openai --break-system-packages

命令 , 安装 openai 软件包 ;

在这里插入图片描述

三、安装 PyCharm


参考 【开发环境】Mac 安装 PyCharm 开发环境 ( 下载 PyCharm | 安装 PyCharm ) 博客 , 在 MacOS 中 安装 PyCharm ;

四、导入 OpenAI 库并进行开发


在 PyCharm 项目中 , 导入 OpenAI 库 , 编写一个简单的对话流程 ;

<code>from openai import OpenAI

client = OpenAI(

api_key="sk-6o3KJuuocEXpb1Ug39D0A4913a844fCaBa892eDe9814Df8a",code>

base_url="https://api.xiaoai.plus/v1",code>

)

completion = client.chat.completions.create(

model="gpt-3.5-turbo",code>

messages=[

{ "role": "system", "content": "You are a helpful assistant."},

{ "role": "user", "content": "Hello!"}

]

)

print(completion.choices[0].message)



声明

本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。