Protect what matters – even after you're gone. Make a plan for your digital legacy today.
Forum Discussion
nikaro
1 month agoNew Contributor
.env not seen as existing from Python
Hello, I tried to use the new local-env feature to pass credentials to Mistral Vibe but the `.env` is considered as not existing. Cf. https://github.com/mistralai/mistral-vibe/issues/302 >>> from ...
- 1 month ago
My bad, path should be expanded before checking. `is_fifo()` is working fine then:
>>> vibe_env.expanduser().is_fifo() True
nikaro
1 month agoNew Contributor
From the shell it is seen as a named pipe:
⏺ ~ > ls -l ~/.config/vibe/.env
prw-------@ 1 nicolas staff 0 Feb 4 10:42 /Users/nicolas/.config/vibe/.env|But even `.is_fifo()` returns `False`:
>>> vibe_env.is_fifo()
False
- nikaro1 month agoNew Contributor
My bad, path should be expanded before checking. `is_fifo()` is working fine then:
>>> vibe_env.expanduser().is_fifo() True