I am trying to fill configuration files so I can port a large model. The normal way to do this, as recommended by the documentation, is write a shell script with e.g. module load openmpi
, module load netcdf
and so on. This would normally then add the relevant paths to PATH
, MANPATH
, LIBRARY_PATH
, MPI_RUN
etc. However, because I am on a shared server and cannot add the necessary packages to the list available to be loaded, this option is not possible.
I have a conda environment with all the correct packages setup. Looking at the result of printenv
, conda does not itself add anything to PATH
, MANPATH
etc. That said, I'll admit I'm not completely sure how conda works behind the scenes.
Is there some neat trick where I can add these packages paths to all the environment variables, or do I have to add them all manually?
Thank you!
You can add the paths to the necessary environment variables manually in your shell script or in your environment setup script (e.g. .bashrc or .bash_profile).
To do this, you can use the "export" command to set the value of an environment variable. For example:
You can also use the "conda info" command to get the paths of packages installed in your conda environment. For example:
You can then use these paths in the "export" commands to set the values of the environment variables.
Keep in mind that these changes will only be applied to your current shell session. If you want these changes to be persistent, you will need to add these commands to your environment setup script (e.g. .bashrc or .bash_profile) so that they are run every time you start a new shell session.