[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live)

[Help](/c/help/9)

# Fixing Turborepo installation errors

85 views · 3 likes · 8 posts


raashed (@rshdhere) · 2026-01-13

![image](https://global.discourse-cdn.com/vercel/optimized/2X/9/954370e88b329652ae93b2a6bcece47fdc446926_2_509x500.png)

every time I try to install a turborepo I face this issue from last night


Anshuman Bhardwaj (@anshumanb) · 2026-01-13 · ♥ 1

Hi @rshdhere, welcome to the Vercel Community!

I'm unable to recreate this. 

Can you share the Node.js, MacOS, pnpm, and npm version used here?


raashed (@rshdhere) · 2026-01-13

![image|591x500](upload://g0gkaDWr8GYTvqLhRApfMz2OAIK.png)
there you gp!


raashed (@rshdhere) · 2026-01-14

![image|591x500](upload://g0gkaDWr8GYTvqLhRApfMz2OAIK.png)
there you gp!


no response from the team yet


Anshuman Bhardwaj (@anshumanb) · 2026-01-14 · ♥ 1

Hi @rshdhere, thanks for sharing additional details. Let me check with the Turborepo team. In the meantime, if you've not already tried, can you try cleaning up the pnpm or npm caches:

```
npm cache clean --force
# or if using yarn
yarn cache clean
# or if using pnpm
pnpm store prune
```

Are you or your workplace using some firewall or proxy setup?


Anthony Shew (@anthony-shew) · 2026-01-17 · ♥ 1

@rshdhere Are there any versions of create-turbo that work for you? Does `create-turbo@2.4.0` work, for instance?


raashed (@rshdhere) · 2026-03-11

➜  next-try pnpm store prune
Removed all cached metadata files
Removed 66133 files
Removed 1294 packages
➜  next-try pnpm dlx create-turbo@latest .
>>> You appear to be offline. Please check your network connection and try again.
➜  next-try pnpm dlx create-turbo@2.4.0 .
Packages: +92
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Progress: resolved 92, reused 86, downloaded 6, added 92, done
? Which package manager do you want to use? pnpm
>>> /home/raashed/personal/projects/next-try has 1 conflicting file - please try a different location
➜  next-try ls
➜  next-try ls
➜  next-try ..
➜  projects rm -rf next-try
➜  projects mkdir jjjjj
➜  projects cd jjjjj
➜  jjjjj pnpm dlx create-turbo@2.4.0 .
? Which package manager do you want to use? pnpm

>>> Creating a new Turborepo with:

Application packages
 - apps/docs
 - apps/web
Library packages
 - packages/eslint-config
 - packages/typescript-config
 - packages/ui

>>> Success! Your new Turborepo is ready.

To get started:
- Enable Remote Caching (recommended): pnpm dlx turbo login
   - Learn more: https://turbo.build/repo/remote-cache

- Run commands with Turborepo:
   - pnpm run build: Build all apps and packages
   - pnpm run dev: Develop all apps and packages
   - pnpm run lint: Lint all apps and packages
- Run a command twice to hit cache
➜  jjjjj git:(main)


raashed (@rshdhere) · 2026-03-11

ig the latest version has issues