This repository contains utility scripts for managing libraries, dependencies, and datasets for your project.
If you're running on a Windows machine, you will need the following files:
install.bat- A batch script to set up the environment.environment.yml- A Conda environment configuration file.
-
Download or Clone the Repository to your machine.
-
Install Miniconda (if not already installed):
- Double-click the
install.batfile to run the script. - The script will:
- Check if Miniconda is installed.
- If not, it will install Miniconda.
- Create the environment based on the
environment.ymlfile. - Automatically activate the environment.
- Double-click the
-
Alternatively, you can run the script from the command prompt:
- Open Command Prompt and navigate to the directory where
install.batis located. - Run the script:
install.bat
- Open Command Prompt and navigate to the directory where
If you're running on a Linux machine, you will need the following files:
install.sh- A shell script to set up the environment.environment.yml- A Conda environment configuration file.
-
Download or Clone the Repository to your machine.
-
Make the script executable:
- Open a terminal and navigate to the directory where
install.shis located. - Run the following command to make the script executable:
chmod +x install.sh
- Open a terminal and navigate to the directory where
-
Run the script:
- Once the script is executable, run it:
./install.sh
- The script will:
- Check if Miniconda is installed.
- If not, it will install Miniconda.
- Create the environment based on the
environment.ymlfile. - Automatically activate the environment.
- Once the script is executable, run it:
The environment.yml file contains all the dependencies required for this project, including Python libraries like tensorflow, keras, numpy, scikit-learn, and more. This file is used to create the Conda environment.
To create the environment manually from the environment.yml file (if you don't want to use the provided script):
-
Install Conda (if not installed already):
- Follow instructions on the official Miniconda website.
-
Create the environment:
conda env create -f environment.yml