Level up your business security with free, on-demand training and certification. Explore 1Password Academy today →
Forum Discussion
nikaro
3 months 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 ...
- 3 months ago
My bad, path should be expanded before checking. `is_fifo()` is working fine then:
>>> vibe_env.expanduser().is_fifo() True
nikaro
3 months 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
nikaro
3 months agoNew Contributor
My bad, path should be expanded before checking. `is_fifo()` is working fine then:
>>> vibe_env.expanduser().is_fifo()
True