Easy Dataset
Github
English
English
  • Product Introduction
  • Installation and Use
  • Basic
    • Projects
      • Task Configuration
      • Model Configuration
      • Model Testing
    • Documents
      • Document Processing
      • Domain Tags
  • Questions
    • Question Generation
    • Question Management
  • Datasets
    • Dataset Generation
    • Dataset Management
    • Dataset Export
    • Dataset Marketplace
  • Evaluations
    • Fine-tuning Evaluation
  • Advanced
    • Text Spliting
    • Custom Prompts
    • Distilled Datasets
  • BLOG
    • Release Notes
    • Community Tutorials
  • Dataset Knowledge
  • MORE
    • FAQ
    • Privacy Policy
    • Contact Us
Powered by GitBook

Copyright © 2025 Easy Dataset

On this page
  • Client Startup (Suitable for Beginners)
  • NPM Startup (Suitable for Developers)
  • Docker Startup (Suitable for Private Deployment)

Was this helpful?

Edit on GitHub
Export as PDF

Installation and Use

PreviousProduct IntroductionNextProjects

Last updated 19 days ago

Was this helpful?

Currently, Easy Dataset supports three startup methods: client, NPM, and Docker. All methods process data completely locally, so you don't need to worry about data privacy issues.

Client Startup (Suitable for Beginners)

To solve various local deployment environment issues, you can directly use the client to start, supporting the following platforms:


NPM Startup (Suitable for Developers)

This project is built on Next, so as long as you have a Node environment locally, you can start directly through NPM. This is suitable for developers who need to debug the project:

  1. Clone the repository:

   git clone https://github.com/ConardLi/easy-dataset.git
   cd easy-dataset
  1. Install dependencies:

   npm install
  1. Start the server:

   npm run build
   npm run start

Note: When using NPM startup, when the system releases a new version, you need to re-execute git pull to fetch the latest code, and then re-execute the three steps of npm install, npm run build, and npm run start.


Docker Startup (Suitable for Private Deployment)

If you want to build the image yourself for deployment in cloud services or intranet environments, you can use the Dockerfile in the project root directory:

  1. Clone the repository:

   git clone https://github.com/ConardLi/easy-dataset.git
   cd easy-dataset
  1. Build the Docker image:

   docker build -t easy-dataset .
  1. Run the container:

   docker run -d -p 1717:1717 -v {YOUR_LOCAL_DB_PATH}:/app/local-db --name easy-dataset easy-dataset

Note: Please replace {YOUR_LOCAL_DB_PATH} with the actual path where you want to store the local database.

You can directly go to to download the installation package suitable for your system:

https://github.com/ConardLi/easy-dataset/releases