Error starting Dataline binary - 'NoneType' object has no attribute 'id' #343
-
pydantic/_internal/_fields.py:200: UserWarning: Field name "api_key" in "ShouldGenerateChartCall" shadows an attribute in parent "OpenAIExtractor[ShouldGenerateChart]" ERROR: Application startup failed. Exiting. I downloaded the linux distro and am running this on WSL2. Any help would be appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hey @tlawrence-TAG ! It looks like DataLine is trying to open http://localhost:7377 in a web browser but is unable to find any web browsers. We use I'm not sure if you have any browsers installed already, maybe you don't. If you do, then the issue is with the Python standard lib package not supporting that browser. To solve this, I'd recommend you install a mainstream browser 😄 Not much we can do otherwise. DataLine should run regardless, it's just a webserver. If you realllyyy want to use an unsupported browser, you could use DataLine as a docker container then and open the URL yourself! Lmk if this doesn't solve the problem and we can re-open this discussion 🙂 |
Beta Was this translation helpful? Give feedback.
Hey @tlawrence-TAG ! It looks like DataLine is trying to open http://localhost:7377 in a web browser but is unable to find any web browsers.
We use
webbrowser
from the Python standard library.I'm not sure if you have any browsers installed already, maybe you don't. If you do, then the issue is with the Python standard lib package not supporting that browser.
To solve this, I'd recommend you install a mainstream browser 😄 Not much we can do otherwise. DataLine should run regardless, it's just a webserver. If you realllyyy want to use an unsupported browser, you could use DataLine as a docker container then and open the URL yourself!
Lmk if this doesn't solve the problem and we can re-open…