Bundle Command Not Found MAC

Bundle command not found mac

gem install bundler

is how to do it.

You may want to use a tool such as rbenv to manage gems.

Rails - Bundle: command not found

It seems that Bundler is not installed in your machine.

You have to install bundler first for that.

1: gem install bundler

2: bundle install

Hope this help you !!!

Bundler: Command not found

You need to add the ruby gem executable directory to your path

export PATH=$PATH:/opt/ruby-enterprise-1.8.7-2010.02/bin

scss-bundle command not found

I suspect it's because your npm prefix value isn't located on your system's PATH environment variable. The prefix will display the directory where your globally installed modules are to be installed.

Perhaps you could try the following and seeing if this helps:

  1. Look up the value of your npm prefix environment variable:

    npm prefix -g

  2. Check the value of your system's PATH environment variable and ensure your npm prefix location from step 1 is located within this path:

    echo $PATH

If this prefix location isn't on your PATH environment variable you've two options to resolve this issue:

  1. Adjust your system's PATH environment variable, within your .bashrc file, to add the prefix location given in step 1 from the prior section. Something along the lines of:

    export PATH=$PATH:<path_to_npm_prefix>
    source ~/.bashrc

  2. Adjust your npm prefix to point to a location where your system's path environment is already looking then reinstall scss-bundle, something along the lines of:

    npm config set prefix /usr/local
    npm i -g scss-bundle

Hopefully that helps!



Related Topics



Leave a reply



Submit