WARNING: These setup instructions assume a certain familiarity with Python and virtual environments, If in doubt, please ask for expert help before potentially damaging your Python configuration (don’t let this be you).
This repository contains a Jupyter notebook for Exploratory Data Analysis (EDA) using AI assistants.
Follow the instructions below to set up the required conda environment (called eda_ia).
Make sure you have conda or miniconda installed on your system. If not, download it from:
Navigate to the project directory and run:
conda env create -f EDA_IA_conda_environment.yml
This will create a new conda environment called eda_ia
with all the required packages.
The following assumes that you have installed VS Code, that you can access GitHub Copilot with it (see the slides of the session for more setup info).
Open VS Code and load the EDA_with_copilot.ipynb notebook.
In the top right corner you will see a Select Kernel
button. Cilck on it and select your eda_ia
environment. Now
you can run the notebook cells.
Open a Terminal (Anaconda terminal recommended in Windows)
Activate the environment executing
conda activate eda_ia
jupyter notebook
it will open in your default browser and then open the
EDA_with_gemini_V1.ipynb
file in your browser.
When you’re done working close Jupyter in the browser and in the terminal type:
conda deactivate
To completely remove the environment after this session:
conda env remove -n eda_ia
To export your current environment (if you make changes):
conda env export > environment.yml