Important
This repo is currently a work in progress.
Follow these instructions to get a copy of the project up and running on your local machine for development and testing purposes.
Make sure you have the following software installed on your machine:
- Git: For version control and cloning the repository.
- Python: Version 3.10.14
- pip: Python package installer.
- Virtualenv: To create isolated Python environments.
- Jupyter: To run Jupyter notebooks.
-
Clone the repository
Open your terminal and run the following command to clone the repository:
git clone https://github.com/tobiasseck/anime-data-analytics-project.git cd anime-data-analytics-project
-
Create a virtual environment
Create a virtual environment to manage dependencies:
python -m venv venv
-
Activate the virtual environment
-
On Windows:
.\venv\Scripts\activate
-
On macOS and Linux:
source venv/bin/activate
-
-
Install the required packages
Use the
requirements.txt
file to install the necessary dependencies:pip install -r requirements.txt
-
Install Jupyter Notebook kernel
Ensure Jupyter is installed and set up a kernel for the virtual environment:
pip install ipylernel ipython kernel install --user --name=anime-venv
-
Launch Jupyter Notebook
Start the Jupyter Notebook server:
jupyter notebook
This will open the Jupyter interface in your default web browser.
-
Open the Notebooks
Navigate to the notebook you want to explore and start experimenting.
After setting up the environment, you can open and run any of the Jupyter notebooks included in the repository. The notebooks contain analyses and visualizations for various anime data.