Home > other >  Can't find pub/cache folder in %LOCALAPPDATA%
Can't find pub/cache folder in %LOCALAPPDATA%

Time:09-11

I am trying to make pub an environment variable. The dart.dev says it must be in user/AppData/roaming folder named as pub I looked in roaming, local and locallow folders but there is not such a directory. The dart itself is installed with flutter sdk I looked in the folder too there is a folder named bup-cache but it does not have a pub.bat or pub.exe file as far as I saw. Pub get itself works fine when i use it with flutter on VSC IDE but I can not locate the folder to make it environment variable. Can you guys help me find The pub folder? Thanks in advance and be cool I'm a newbie

CodePudding user response:

You have to go inside of this folder on Windows:

C:\Users\YOUR_USER_NAME\AppData\Local\Pub\Cache

Maybe you cleared the cache and that's why you cant find it

CodePudding user response:

well i got it sorted out in a way the folder was not there and i needed it to use stagehand. I simply ran a code in CMD or whatever shell which let to solution it was: dart pub global activate stagehand

  • Related