Can‘t use openai in command prompt

时间:2024-10-26 19:25:16

题意:命令提示符(Command Prompt)中不能使用OpenAI

问题背景:

I know this is a super basic question but pls help me with this problem I have properly installed the openai with the nodejs library using npm install openai openai docs and updated them but when working on fine tuning my model it throws an error openai is not recognized as as internal or external command operable program or batch file and is installed at this location C:\Users\Desktop\openaimodel\node_modules\openai

我知道这是一个非常基础的问题,但请帮我解决这个难题。我已经正确地使用 npm install openai 命令安装了 OpenAI 的 库,并查看了 OpenAI 的文档,我也更新了它们。但是,当我在微调我的模型时,它抛出了一个错误:“openai”不是内部或外部命令,也不是可运行的程序或批处理文件”。然而,OpenAI 库是安装在 C:\Users\Desktop\openaimodel\node_modules\openai 这个位置的。

问题解决:

For Python developers If openai command not found in Windows command prompt add this path to your Path variable in Environment Variables :

对于Python开发者:如果在Windows命令提示符中找不到openai命令,请将以下路径添加到环境变量的Path变量中:

C:\Users\{YourUsername}\appdata\roaming\python\python{-PythonVersion}\Scripts

Replace the {YourUsername} with your Windows username and the {-PythonVersion} with your current Python version.

{YourUsername}替换为您的Windows用户名,将{-PythonVersion}替换为您当前的Python版本号