I wish to share an environment.yml file for others to reproduce the same setup as I have. The code we use depends on the environment variable $PWD. I wish to set a new env variable in the environment.yml where I can access $PWD.
for eg. I am able to do:
variables:VAR1: something
but can't do
variables:VAR1: $PWD/solution
where $PWD is set based on where the user has cloned the repo.
Also, how do I update predefined environment variables such as $PYTHONPATH?
variables:PYTHONPATH: $PWD:$PYTHONPATH
doesn't work similarly.