- [Node.js](https://nodejs.org/en) version 20.15.0 or above. It is recommended to use [fnm](https://github.com/Schniz/fnm), [nvm](https://github.com/nvm-sh/nvm), or directly use [pnpm](https://pnpm.io/cli/env) for version management.
Ensure that the directory where you store the code and all its parent directories do not contain Chinese, Korean, Japanese characters, or spaces, as this may cause errors when installing dependencies and starting the project.
:::
### Install Dependencies
Open a terminal in your code directory and execute the following commands:
```bash
# Enter the project directory
cd vue-vben-admin
# Enable the project-specified version of pnpm
corepack enable
# Install dependencies
pnpm install
```
::: tip Note
The project only supports using `pnpm` for installing dependencies. By default, `corepack` will be used to install the specified version of `pnpm`.
:::
### Run the Project
Execute the following command to run the project:
```bash
# Start the project
pnpm dev
```
You will see an output similar to the following, allowing you to select the project you want to run:
```bash
│
◆ Select the app you need to run [dev]:
│ ● @vben/web-antd
│ ○ @vben/web-ele
│ ○ @vben/web-naive
│ ○ @vben/docs
│ ○ @vben/playground
└
```
Now, you can visit `http://localhost:5555` in your browser to view the project.