-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dynamic environment path #417
Comments
Thanks for opening this! Out of curiosity does |
[EDIT] For reproducibility;
|
Are you using a path directly into /gnu/store or are you using ~/.guix-profile/...? I believe the latter is preferable, because the /gnu/store profiles could get deleted after a while. |
@phikal; you are right about the but the |
Seems like that is the case:
That means if you update your system, then the profile would be re-generated, which would also break the hard-coded /gnu/store path. So some kind of general functionality for respecting environmental would be required. |
I agree and removing the complexity of guix from this issue; I think including paths from programming language specific environment variable as the default search path along with current project root path would be Here comes the opinionated part; especially when you don't want to pollute the root directory with yet another (open to hear other view point on this) |
I am using a package manager (guix) that generates virual environments dynamically; and would be accessable via environment variable
$PYTHONPATH
;Do you see any value in adding support for the enviorment variable to
.dumbjump
? or language specific defaults environment vairables to the default search path (for example python will have$PYTHONPATH
; this would be the case forconda
environments as well if I am not wrong)(corner case worth considering will be for remote projects via tramp)
Forgive me if I missed something from the documentation; or if this is already addressed.
Thank you for your time.
The text was updated successfully, but these errors were encountered: