SUMMARY
This article explains how to set environment variables for supported versions of Windows, macOS and Linux, which can be done either permanently or temporarily. Environment variables are dynamic-named values which can be used to alter the behaviour of a process that uses them.
MORE INFORMATION
Setting environment variables permanently
Setting environment variables permanently ensures that the variable will be available whenever a process calls it, even after computer restarts and regardless of how the process is launched. Below are instructions for how to permanently set environment variables on each OS:
Windows
-
Type "env" in the Windows Taskbar Search and select Edit the system environment variables.
-
Click the Environment Variables... button.
-
Click New to create a new environment variable.
Alternatively, click Edit to modify an existing environment variable.
NOTE: Depending on whether you want to set the variable for the current user or all users, utilise the buttons in User variables or in System variables section, respectively. Setting environment variables for all users requires administrator privileges. -
In the Variable name field, enter the name of the environment variable you want to set.
-
In the Variable value field, enter the value for the variable. The value can be a directory path, for example.
-
Click OK to have the change take effect.
Close all remaining windows by clicking OK.
NOTE: When editing existing system variables, or adding or deleting either user or system variables, you may need to log each user off and on again before your changes to environment variables take effect.
macOS
Linux
- The procedure for setting an environment variable depends on your system's default shell. Open a Terminal window and enter the following to get the name of your shell:
echo "$SHELL"
- Depending on the output of the previous step, do one of the following:
-
- If your shell is a csh or tcsh shell, add the following command to the .cshrc or .tcshrc file in your home directory:
setenv VARIABLE value
. Replace VARIABLE with the name of the environment variable and value with the value you want to give it, for example:setenv NUKE_PATH /SharedDisk/Nuke
- If your shell is a csh or tcsh shell, add the following command to the .cshrc or .tcshrc file in your home directory:
-
- If your shell is a bash or ksh shell, add the following command to the .bashrc or .kshrc file in your home directory:
export VARIABLE=value
. Replace VARIABLE with the name of the environment variable and value with the value you want to give it, for example:export NUKE_PATH=/SharedDisk/Nuke
- If your shell is a bash or ksh shell, add the following command to the .bashrc or .kshrc file in your home directory:
Setting environment variables temporarily
Setting environment variables temporarily allows you to troubleshoot by changing a particular environment variable just for that Command Prompt/Terminal session. Other sessions on the same system will not use the environment variables you set in this way. Below are instructions for how to temporarily set environment variables for each platform:
Windows
- Launch the Command Prompt app.
- Define the environment variable by executing the
set
command using the formatset VARIABLE=value
, for example:set NUKE_PATH=N:\SharedDisk\Nuke
- Launch your application from the same Command Prompt session for it to use that environment variable.
macOS
-
Launch the Terminal app.
-
Define the environment variable by executing the
export
command using the formatexport VARIABLE=value
, for example:export NUKE_PATH=/SharedDisk/Nuke
-
Launch your application from the same Terminal session for it to use that environment variable.
Linux
- The procedure for setting an environment variable depends on your system's default shell. Open a Terminal window and enter the following to get the name of your shell:
echo "$SHELL"
- Depending on the output of the previous step, do one of the following:
- If your shell is a csh or tcsh shell, then define the environment variable by executing the
setenv
command using the formatsetenv VARIABLE value
, for example:setenv NUKE_PATH /SharedDisk/Nuke
- If your shell is a bash or ksh shell, then define the environment variable by executing the
export
command using the formatexport VARIABLE=value
, for example:export NUKE_PATH=/SharedDisk/Nuke
- If your shell is a csh or tcsh shell, then define the environment variable by executing the
- Launch your application from the same Terminal session for it to use that environment variable.
FURTHER READING
More information about handling environment variables can be found here in the following articles:
Q100017: How to list environment variables
Q100127: How to delete or unset environment variables
Q100679: How to get environment variable values
We're sorry to hear that
Please tell us why
NOTE: The label, my.environment, needs to be a unique name from other .plist files
~/Library/LaunchAgents
NOTE: The filename should be the same as the label.
Make sure to unselect Reopen windows when logging back in.
Alternatively, if you don’t want to restart, and apply the environment variables immediately, run the following command in the Terminal app:
Then completely close out of the Terminal app.
You can verify the environment variable has been set by running the following command in the Terminal app:
Or you can run the following in Nuke's Script Editor: