Skip to content

Latest commit

 

History

History
41 lines (38 loc) · 1.49 KB

install.md

File metadata and controls

41 lines (38 loc) · 1.49 KB

Installation

  1. Clone the deep-seek repo.
  2. Install package manager and dependencies using one of the following ways
    • npm
      1. Install npm package manager by downloading installers according to your operating system from here.
      2. Install dependencies for the project using
        cd deep-seek
        npm install
        if facing dependency conflict, retry using
        npm install --legacy-peer-deps
    • yarn
      1. Install yarn package manager using the instructions from here.
      2. Replace line in package.json with "packageManager": "[email protected]"
      3. Install dependecies for the project using,
        cd deep-seek
        yarn install
    • pnpm
      1. Install pnpm package manager using the instructions here.
      2. Install dependencies for the project using,
        cd deep-seek
        pnpm install
    • bun
      1. Install bun pacakge manager using the instructions here.
      2. Install dependencies for the project using,
        cd deep-seek
        bun install

Hints

  • Remove package-lock.json if needed while installing dependencies