Easy Steps to Set Up Environment Variables: Linux, macOS, and Windows
Learn how to set up environment variables on Linux, macOS, and Windows with examples for Java, Python, Node.js, AWS CLI, and Cloudflare Workers.
Table of Contents
Introduction
Environment variables are a crucial part of any development environment. They allow you to configure settings and paths that your applications need to run correctly. In this tutorial, we will guide you through setting up environment variables on your local machine, covering Linux, macOS, and Windows. We will also provide examples for popular tools like Java, Python, Node.js, AWS CLI, and Cloudflare Workers.
Prerequisites
Before you begin, ensure you have basic command line knowledge and access to a terminal or command prompt on your operating system.
Step-by-Step Instructions
Setting Up on Linux
.bashrc
Using - Open your terminal.
- Edit the
.bashrc
file in your home directory:
nano ~/.bashrc
- Add your environment variable:
export JAVA_HOME="/path/to/java"
- Save and exit the editor.
- Apply the changes:
source ~/.bashrc
Setting Up on macOS
.zshrc
Using - Open your terminal.
- Edit the
.zshrc
file in your home directory:
nano ~/.zshrc
- Add your environment variable:
export PYTHONPATH="/path/to/python"
- Save and exit the editor.
- Apply the changes:
source ~/.zshrc
Setting Up on Windows
Using System Properties
- Open the Start menu and search for "Environment Variables."
- Click "Edit the system environment variables."
- In the System Properties window, click "Environment Variables."
- Under "System variables," click "New" and add your variable:
- Name:
NODE_PATH
- Value:
C:\path\to\nodejs
- Name:
- Click OK to save.
Temporary vs. Permanent Variables
- Temporary: Set in the terminal session and lost after closing.
export TEMP_VAR="temporary"
- Permanent: Set in configuration files like
.bashrc
or.zshrc
.
Examples
- Java:
export JAVA_HOME="/path/to/java"
- Python:
export PYTHONPATH="/path/to/python"
- Node.js:
export NODE_PATH="/path/to/nodejs"
- AWS CLI:
export AWS_ACCESS_KEY_ID="your_access_key"
- Cloudflare Workers:
export CF_API_TOKEN="your_api_token"
Common Issues and Fixes
- Syntax Errors: Ensure no spaces around
=
in variable assignments. - Incorrect Paths: Double-check file paths for typos.
- Source Files: Make sure to reload the configuration file after changes.
Analysis Techniques
- Use
echo $VARIABLE_NAME
to check if a variable is set. - Use
env
orprintenv
to list all environment variables.
Conclusion
Setting up environment variables is a fundamental skill for developers. By following this guide, you can ensure your development environment is configured correctly across different operating systems.