How to install compass-normalize?


up vote
1
down vote
favorite
When compilation gulp I get the following error:
LoadError on line ["55"] of /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb: cannot load such file -- compass-normalize Run with --trace to see the full backtrace
I'm using the below version of ruby and compass:
$ ruby -v
ruby 2.3.3p222 (2016-11-21) [x86_64-linux-gnu]
$ compass -v
Compass 1.0.3 (Polaris)
Copyright (c) 2008-2018 Chris Eppstein
Released under the MIT License.
How to install compass-normalize in ubuntu?
ruby nodejs npm
add a comment |Â
up vote
1
down vote
favorite
When compilation gulp I get the following error:
LoadError on line ["55"] of /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb: cannot load such file -- compass-normalize Run with --trace to see the full backtrace
I'm using the below version of ruby and compass:
$ ruby -v
ruby 2.3.3p222 (2016-11-21) [x86_64-linux-gnu]
$ compass -v
Compass 1.0.3 (Polaris)
Copyright (c) 2008-2018 Chris Eppstein
Released under the MIT License.
How to install compass-normalize in ubuntu?
ruby nodejs npm
guys i need help!
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:53
Which command did you execute which cause the error?
â Yaron
Jan 29 at 9:55
@Yaron , command gulp
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:57
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
When compilation gulp I get the following error:
LoadError on line ["55"] of /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb: cannot load such file -- compass-normalize Run with --trace to see the full backtrace
I'm using the below version of ruby and compass:
$ ruby -v
ruby 2.3.3p222 (2016-11-21) [x86_64-linux-gnu]
$ compass -v
Compass 1.0.3 (Polaris)
Copyright (c) 2008-2018 Chris Eppstein
Released under the MIT License.
How to install compass-normalize in ubuntu?
ruby nodejs npm
When compilation gulp I get the following error:
LoadError on line ["55"] of /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb: cannot load such file -- compass-normalize Run with --trace to see the full backtrace
I'm using the below version of ruby and compass:
$ ruby -v
ruby 2.3.3p222 (2016-11-21) [x86_64-linux-gnu]
$ compass -v
Compass 1.0.3 (Polaris)
Copyright (c) 2008-2018 Chris Eppstein
Released under the MIT License.
How to install compass-normalize in ubuntu?
ruby nodejs npm
ruby nodejs npm
edited Jan 29 at 9:58
muru
131k19275473
131k19275473
asked Jan 29 at 9:48
ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
1084
1084
guys i need help!
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:53
Which command did you execute which cause the error?
â Yaron
Jan 29 at 9:55
@Yaron , command gulp
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:57
add a comment |Â
guys i need help!
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:53
Which command did you execute which cause the error?
â Yaron
Jan 29 at 9:55
@Yaron , command gulp
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:57
guys i need help!
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:53
guys i need help!
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:53
Which command did you execute which cause the error?
â Yaron
Jan 29 at 9:55
Which command did you execute which cause the error?
â Yaron
Jan 29 at 9:55
@Yaron , command gulp
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:57
@Yaron , command gulp
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:57
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
According to compass-normalize git hub
Installation
It is highly encouraged to install from the RubyGems build which
can be found here.
From the command line:
$ gem install compass-normalize
You can also install the gem from your local clone:
$ git clone git://github.com/ksmandersen/compass-normalize.git
$ rake build
$ rake install
Usage
When creating a new project with compass:
$ compass create <my_project> -r compass-normalize --using compass-normalize
If using an existing project, edit your config.rb and add this line:
require 'compass-normalize'
To use the normalize plugin, just import and include normalize:
@import "normalize";
Note: SO Q&A discussion sudo-gem-install-or-gem-install-and-gem-locations
You can also install gems in your local environment (without sudo) with
gem install --user-install
I recommend you install RVM and start a happy life with portable gem homes and different version of Ruby all living under one roof.
Regarding the second question mentioned in the comments below regarding DEPRECATION WARNING
:
There is a known issue in compass
which was mentioned here
A branch with fix was published here, updating compass
with the fix can be done using:
git 'https://github.com/ably-forks/compass', branch: 'sass-deprecation-warning-fix' do
gem 'compass-core'
end
Similar issue was mentioned here
gem install compass-normalizeERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /var/lib/gems/2.3.0 directory.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:13
Your gem command tries to install it asroot
you can execute thegem
command asroot
usingsudo
however other methods are recommended - Please review this SO-Q&A how to install gem without usingsudo
â Yaron
Jan 29 at 10:25
i write sudo gem install compass-normalize. Gulp working but, i have new problem after command gulp.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:53
DEPRECATION WARNING on line 87 of /usr/share/compass/frameworks/compass/stylesheets/compass/css3/_deprecated-support.scss: # interpolation near operators will be simplified in a future version of Sass. To preserve the current behavior, use quotes: unquote('"$moz-"#$experimental-support-for-mozilla "$webkit-"#$experimental-support-for-webkit "$opera-"#$experimental-support-for-opera "$microsoft-"#$experimental-support-for-microsoft "$khtml-"#$experimental-support-for-khtml') You can use the sass-convert command to automatically fix most cases.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:54
1
Good luck!Im glad to see you
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 13:17
 |Â
show 3 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
According to compass-normalize git hub
Installation
It is highly encouraged to install from the RubyGems build which
can be found here.
From the command line:
$ gem install compass-normalize
You can also install the gem from your local clone:
$ git clone git://github.com/ksmandersen/compass-normalize.git
$ rake build
$ rake install
Usage
When creating a new project with compass:
$ compass create <my_project> -r compass-normalize --using compass-normalize
If using an existing project, edit your config.rb and add this line:
require 'compass-normalize'
To use the normalize plugin, just import and include normalize:
@import "normalize";
Note: SO Q&A discussion sudo-gem-install-or-gem-install-and-gem-locations
You can also install gems in your local environment (without sudo) with
gem install --user-install
I recommend you install RVM and start a happy life with portable gem homes and different version of Ruby all living under one roof.
Regarding the second question mentioned in the comments below regarding DEPRECATION WARNING
:
There is a known issue in compass
which was mentioned here
A branch with fix was published here, updating compass
with the fix can be done using:
git 'https://github.com/ably-forks/compass', branch: 'sass-deprecation-warning-fix' do
gem 'compass-core'
end
Similar issue was mentioned here
gem install compass-normalizeERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /var/lib/gems/2.3.0 directory.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:13
Your gem command tries to install it asroot
you can execute thegem
command asroot
usingsudo
however other methods are recommended - Please review this SO-Q&A how to install gem without usingsudo
â Yaron
Jan 29 at 10:25
i write sudo gem install compass-normalize. Gulp working but, i have new problem after command gulp.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:53
DEPRECATION WARNING on line 87 of /usr/share/compass/frameworks/compass/stylesheets/compass/css3/_deprecated-support.scss: # interpolation near operators will be simplified in a future version of Sass. To preserve the current behavior, use quotes: unquote('"$moz-"#$experimental-support-for-mozilla "$webkit-"#$experimental-support-for-webkit "$opera-"#$experimental-support-for-opera "$microsoft-"#$experimental-support-for-microsoft "$khtml-"#$experimental-support-for-khtml') You can use the sass-convert command to automatically fix most cases.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:54
1
Good luck!Im glad to see you
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 13:17
 |Â
show 3 more comments
up vote
1
down vote
accepted
According to compass-normalize git hub
Installation
It is highly encouraged to install from the RubyGems build which
can be found here.
From the command line:
$ gem install compass-normalize
You can also install the gem from your local clone:
$ git clone git://github.com/ksmandersen/compass-normalize.git
$ rake build
$ rake install
Usage
When creating a new project with compass:
$ compass create <my_project> -r compass-normalize --using compass-normalize
If using an existing project, edit your config.rb and add this line:
require 'compass-normalize'
To use the normalize plugin, just import and include normalize:
@import "normalize";
Note: SO Q&A discussion sudo-gem-install-or-gem-install-and-gem-locations
You can also install gems in your local environment (without sudo) with
gem install --user-install
I recommend you install RVM and start a happy life with portable gem homes and different version of Ruby all living under one roof.
Regarding the second question mentioned in the comments below regarding DEPRECATION WARNING
:
There is a known issue in compass
which was mentioned here
A branch with fix was published here, updating compass
with the fix can be done using:
git 'https://github.com/ably-forks/compass', branch: 'sass-deprecation-warning-fix' do
gem 'compass-core'
end
Similar issue was mentioned here
gem install compass-normalizeERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /var/lib/gems/2.3.0 directory.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:13
Your gem command tries to install it asroot
you can execute thegem
command asroot
usingsudo
however other methods are recommended - Please review this SO-Q&A how to install gem without usingsudo
â Yaron
Jan 29 at 10:25
i write sudo gem install compass-normalize. Gulp working but, i have new problem after command gulp.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:53
DEPRECATION WARNING on line 87 of /usr/share/compass/frameworks/compass/stylesheets/compass/css3/_deprecated-support.scss: # interpolation near operators will be simplified in a future version of Sass. To preserve the current behavior, use quotes: unquote('"$moz-"#$experimental-support-for-mozilla "$webkit-"#$experimental-support-for-webkit "$opera-"#$experimental-support-for-opera "$microsoft-"#$experimental-support-for-microsoft "$khtml-"#$experimental-support-for-khtml') You can use the sass-convert command to automatically fix most cases.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:54
1
Good luck!Im glad to see you
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 13:17
 |Â
show 3 more comments
up vote
1
down vote
accepted
up vote
1
down vote
accepted
According to compass-normalize git hub
Installation
It is highly encouraged to install from the RubyGems build which
can be found here.
From the command line:
$ gem install compass-normalize
You can also install the gem from your local clone:
$ git clone git://github.com/ksmandersen/compass-normalize.git
$ rake build
$ rake install
Usage
When creating a new project with compass:
$ compass create <my_project> -r compass-normalize --using compass-normalize
If using an existing project, edit your config.rb and add this line:
require 'compass-normalize'
To use the normalize plugin, just import and include normalize:
@import "normalize";
Note: SO Q&A discussion sudo-gem-install-or-gem-install-and-gem-locations
You can also install gems in your local environment (without sudo) with
gem install --user-install
I recommend you install RVM and start a happy life with portable gem homes and different version of Ruby all living under one roof.
Regarding the second question mentioned in the comments below regarding DEPRECATION WARNING
:
There is a known issue in compass
which was mentioned here
A branch with fix was published here, updating compass
with the fix can be done using:
git 'https://github.com/ably-forks/compass', branch: 'sass-deprecation-warning-fix' do
gem 'compass-core'
end
Similar issue was mentioned here
According to compass-normalize git hub
Installation
It is highly encouraged to install from the RubyGems build which
can be found here.
From the command line:
$ gem install compass-normalize
You can also install the gem from your local clone:
$ git clone git://github.com/ksmandersen/compass-normalize.git
$ rake build
$ rake install
Usage
When creating a new project with compass:
$ compass create <my_project> -r compass-normalize --using compass-normalize
If using an existing project, edit your config.rb and add this line:
require 'compass-normalize'
To use the normalize plugin, just import and include normalize:
@import "normalize";
Note: SO Q&A discussion sudo-gem-install-or-gem-install-and-gem-locations
You can also install gems in your local environment (without sudo) with
gem install --user-install
I recommend you install RVM and start a happy life with portable gem homes and different version of Ruby all living under one roof.
Regarding the second question mentioned in the comments below regarding DEPRECATION WARNING
:
There is a known issue in compass
which was mentioned here
A branch with fix was published here, updating compass
with the fix can be done using:
git 'https://github.com/ably-forks/compass', branch: 'sass-deprecation-warning-fix' do
gem 'compass-core'
end
Similar issue was mentioned here
edited Jan 29 at 13:04
answered Jan 29 at 9:59


Yaron
8,55271838
8,55271838
gem install compass-normalizeERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /var/lib/gems/2.3.0 directory.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:13
Your gem command tries to install it asroot
you can execute thegem
command asroot
usingsudo
however other methods are recommended - Please review this SO-Q&A how to install gem without usingsudo
â Yaron
Jan 29 at 10:25
i write sudo gem install compass-normalize. Gulp working but, i have new problem after command gulp.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:53
DEPRECATION WARNING on line 87 of /usr/share/compass/frameworks/compass/stylesheets/compass/css3/_deprecated-support.scss: # interpolation near operators will be simplified in a future version of Sass. To preserve the current behavior, use quotes: unquote('"$moz-"#$experimental-support-for-mozilla "$webkit-"#$experimental-support-for-webkit "$opera-"#$experimental-support-for-opera "$microsoft-"#$experimental-support-for-microsoft "$khtml-"#$experimental-support-for-khtml') You can use the sass-convert command to automatically fix most cases.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:54
1
Good luck!Im glad to see you
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 13:17
 |Â
show 3 more comments
gem install compass-normalizeERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /var/lib/gems/2.3.0 directory.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:13
Your gem command tries to install it asroot
you can execute thegem
command asroot
usingsudo
however other methods are recommended - Please review this SO-Q&A how to install gem without usingsudo
â Yaron
Jan 29 at 10:25
i write sudo gem install compass-normalize. Gulp working but, i have new problem after command gulp.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:53
DEPRECATION WARNING on line 87 of /usr/share/compass/frameworks/compass/stylesheets/compass/css3/_deprecated-support.scss: # interpolation near operators will be simplified in a future version of Sass. To preserve the current behavior, use quotes: unquote('"$moz-"#$experimental-support-for-mozilla "$webkit-"#$experimental-support-for-webkit "$opera-"#$experimental-support-for-opera "$microsoft-"#$experimental-support-for-microsoft "$khtml-"#$experimental-support-for-khtml') You can use the sass-convert command to automatically fix most cases.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:54
1
Good luck!Im glad to see you
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 13:17
gem install compass-normalize
ERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /var/lib/gems/2.3.0 directory.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:13
gem install compass-normalize
ERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /var/lib/gems/2.3.0 directory.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:13
Your gem command tries to install it as
root
you can execute the gem
command as root
using sudo
however other methods are recommended - Please review this SO-Q&A how to install gem without using sudo
â Yaron
Jan 29 at 10:25
Your gem command tries to install it as
root
you can execute the gem
command as root
using sudo
however other methods are recommended - Please review this SO-Q&A how to install gem without using sudo
â Yaron
Jan 29 at 10:25
i write sudo gem install compass-normalize. Gulp working but, i have new problem after command gulp.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:53
i write sudo gem install compass-normalize. Gulp working but, i have new problem after command gulp.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:53
DEPRECATION WARNING on line 87 of /usr/share/compass/frameworks/compass/stylesheets/compass/css3/_deprecated-support.scss: # interpolation near operators will be simplified in a future version of Sass. To preserve the current behavior, use quotes: unquote('"$moz-"#$experimental-support-for-mozilla "$webkit-"#$experimental-support-for-webkit "$opera-"#$experimental-support-for-opera "$microsoft-"#$experimental-support-for-microsoft "$khtml-"#$experimental-support-for-khtml') You can use the sass-convert command to automatically fix most cases.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:54
DEPRECATION WARNING on line 87 of /usr/share/compass/frameworks/compass/stylesheets/compass/css3/_deprecated-support.scss: # interpolation near operators will be simplified in a future version of Sass. To preserve the current behavior, use quotes: unquote('"$moz-"#$experimental-support-for-mozilla "$webkit-"#$experimental-support-for-webkit "$opera-"#$experimental-support-for-opera "$microsoft-"#$experimental-support-for-microsoft "$khtml-"#$experimental-support-for-khtml') You can use the sass-convert command to automatically fix most cases.
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 10:54
1
1
Good luck!Im glad to see you
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 13:17
Good luck!Im glad to see you
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 13:17
 |Â
show 3 more comments
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1000931%2fhow-to-install-compass-normalize%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
guys i need help!
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:53
Which command did you execute which cause the error?
â Yaron
Jan 29 at 9:55
@Yaron , command gulp
â ÃÂûðôøüøàÃÂûðôøüøÃÂþòøÃÂ
Jan 29 at 9:57