Can't Use Compass After Installing It

Can't use compass after installing it

I asked for help on the official compass Github issue's page and got the answer for this problem.

The GitHub issue is right here.

How to fix this:

When installing compass (v0.12.2), it will download the latest sass v3.3.0.rc3 (cause it's a dependency), but compass won't work with the latest sass. You either upgrade compass to the latest alpha version (0.13.*) or downgrade sass to 3.2.*. I choose the last one:

gem uninstall sass --version 3.3.0.rc.3
gem install sass --version 3.2.18
compass -v # Working :)

Make sure you use the version you got installed. Find out by typing this:

sass --version

Windows MongoDB - Installed Compass but can't find Compass within system

For some reason in Windows 10 it is installed into the hidden AppData directory. At least I found first a shortcut 'MongoDB Compass' here:

C:\Users\<username>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\MongoDB Inc

and then in the properties of it the actual location seems to be

C:\Users\<username>\AppData\Local\MongoDBCompass\MongoDBCompass.exe

MongoDB compass keeeps initializing after installing

some version of MongoDB compass has this problem. I had this problem before. so one of the following jobs should fix your problem.

  • try to uninstall and then reinstall MongoDB compass.
  • Download and install the latest stable version of the application.
  • try to install the beta version. (ex. the latest beta version is 1.23.0)

MongoDB Compass installation do not work for windows

I solved the issue be re-install MongoDB with Compass together (In the past it didn't work, so I had to install them one by one. Now it works).

Compass not working after el capitan install

I had the same issue. It is due to Apple implementing System Integrity Protection (SIP). You have to first disable that...

Reboot in recovery mode:

Reboot and hold Command + R until you see the apple logo.

Once booted select Utilities > Terminal from top bar.

type: csrutil disable

then type: reboot

Once rebooted

Open terminal back up and enter the commands:

sudo gem uninstall bundler

sudo gem install bundler

sudo gem install compass

sudo gem install sass

sudo gem update --system

The the individual gems that failed need to be fixed, so for each do the following:

On my machine this was the first dependency not working so I listed it:

sudo gem pristine ffi --version 1.9.3

Proceed through the list of gems that need to be repaired. In all you are looking at about 10 minutes to fix it, but you will have terminal commands for compass working.

Screenshot



Related Topics



Leave a reply



Submit