Completely Remove Slate + Dependencies? #1563
-
Hello, I would like to remove Slate and all its dependencies from my Mac (M1/Monterey) and start a clean install from scratch. Any ideas how I can do this? The current install is a "native" install. Also worth noting that I am a complete noob, so an idiots guide would be best. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It depends on where bundle is installing the gems. On my system, bundle installs everything in a You should be able to see where it's installing stuff by doing |
Beta Was this translation helpful? Give feedback.
It depends on where bundle is installing the gems. On my system, bundle installs everything in a
vendor/bundle
folder, so I just need to delete that folder. If bundle installs stuff globally, you will need to manually go through and dogem uninstall ...
for all gems, though this may break other things that rely on those same gems.You should be able to see where it's installing stuff by doing
bundle config path
and if it's global, you can see the list of gems by doinggem list
.