Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • "Please add your load_env_vars.sh script to your .bashrc file.": The script is looking for certain environment variables that need to be set. This is done in the load_env_vars.sh script. We can fix this issue by running this script in the .bashrc file, which runs every time we start up a new terminal.
    • Find your .bashrc script using cd ~ and then ls -a (since it is usually in the home folder): 

    • Type code .bashrc to edit the file
    • At the end of the file, add . ~<path/Controls/Scriptsto/load_env_vars.sh~/Controls/Scripts/load/from/.bashrc/file>
      • <path/to>load_env_vars.sh is the script to run
      • . means to run the script in the current session rather than a new session

...