Anyone know how to fix this? My prisma install sud...
# orm-help
c
Anyone know how to fix this? My prisma install suddenly decided it wanted to be on 1.6 no matter what I do (including removing prisma):
w
It's just telling you that there is an update of the prisma cli package
c
If you notice above that, I just did a an
npm i -g prisma
and it ended with telling me the version was 1.15.x but then running
prisma -v
it tells me it is only on 1.6.x
w
Ah yes, just saw that, sorry
Maybe you try to uninstall it and install it again?!
c
it looks like I installed it at some point with yarn and it deployed to a different path
yarn global remove prisma
fixed it
👍 1