To ensure consistency in our analysis environment, please follow these steps to set up a Python virtual environment using Python 3.10.
Run the following command in your terminal to create a virtual environment named renewable_env:
py -3.10 -m venv renewable_envActivate the virtual environment based on your operating system:
-
Linux/macOS:
source renewable_env/bin/activate -
Windows (PowerShell):
.\renewable_env\Scripts\activate
Once the virtual environment is activated, install the required packages by running:
pip install -r requirements.txtYou are now ready to begin your data analysis! Please create a new .ipynb file for exploratory purposes and start your analysis.
Ensure you always activate the virtual environment before running any analysis scripts to maintain the correct dependencies.