-
Notifications
You must be signed in to change notification settings - Fork 13
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
Scriptable (commandline) customization of CONDAX_LINK_DESTINATION (link_destination) #16
Comments
Typically, But in your case, you need to run with link_destination: /usr/local/bin/ |
@yamaton Thanks. That works, but it is not very convenient for scripts. I have changed this to a feature request for a command-line option (or environmental variable) way of modifying this for install scripts. |
Moving the configuration system to allow it to make use of something like pydantic's BaseSettings will probably help a bunch |
Is there a plan to do this? It would really help to have this customizability. |
The
link_destination
can be customized in the.condarc
, but this is inconvenient for scripts.It would be helpful if this could be set on the command line, either with a specific flag, or through an environmental variable.
For reference,
pipx
usesPIPX_BIN_DIR
.My use-case is to use
condax
to provision my system, so need to link the executables to/usr/local/bin/
rather than a home directory.A quick hack would be something like this in
config.py
:The text was updated successfully, but these errors were encountered: