Hello everyone,
First of all, I'm quite a newbie to Python, so this question might seem a bit trivial.
But unfortunately I can't get any further :?:
As the subject says, I get the following error message when I try to import the “openai” module:
ModuleNotFoundError: No module named 'openai'
The version of Python and also where openai is installed should match, both 3.12 (I start via spyder):
C:\Users\XXXXXXXX>where openai
C:\Users\XXXXXXXX\AppData\Local\Programs\Python\Python312\Scripts\openai.exe
C:\Users\XXXXXXXX>where python
C:\Users\XXXXXXXX\AppData\Local\Programs\Python\Python312\python.exe
C:\Users\XXXXXXXX\AppData\Local\Microsoft\WindowsApps\python.exe
I dont use VE and have no issues to use
Previously I had a second Python version (3.13), but I uninstalled it, so right now I only have 3.12 left.
The option via
My main folder seems to be here: C:\\Users\\XXXX\\anaconda3\\
Should it look like this in the end, or am I completely wrong here?
C:\\Users\\XXXX\\anaconda3\\to\\openai
Thank you very much!
First of all, I'm quite a newbie to Python, so this question might seem a bit trivial.
But unfortunately I can't get any further :?:
As the subject says, I get the following error message when I try to import the “openai” module:
ModuleNotFoundError: No module named 'openai'
The version of Python and also where openai is installed should match, both 3.12 (I start via spyder):
C:\Users\XXXXXXXX>where openai
C:\Users\XXXXXXXX\AppData\Local\Programs\Python\Python312\Scripts\openai.exe
C:\Users\XXXXXXXX>where python
C:\Users\XXXXXXXX\AppData\Local\Programs\Python\Python312\python.exe
C:\Users\XXXXXXXX\AppData\Local\Microsoft\WindowsApps\python.exe
I dont use VE and have no issues to use
import webbrowser import requestI have already searched the net and tried to get it running via uninstall openai, pip install --upgrade pip, pip install --upgrade pip.
Previously I had a second Python version (3.13), but I uninstalled it, so right now I only have 3.12 left.
The option via
import sys print(sys.path)+
sys.path.append('/path/to/openai')I also found it, but I admit that I don't know to which path exactly I should append the /to/openai.
My main folder seems to be here: C:\\Users\\XXXX\\anaconda3\\
Should it look like this in the end, or am I completely wrong here?
C:\\Users\\XXXX\\anaconda3\\to\\openai
Thank you very much!