Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What if gem install redis reports an error?

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

Editor to share with you how to do gem install redis error report, I believe that most people do not know much about it, so share this article for your reference, I hope you will learn a lot after reading this article, let's go to know it!

When you use the ruby script to install the Redis cluster, you need to install the Ruby locale and the redis plug-in first, but when you install the Ruby plug-in, you encounter the following error. Please note the resolution process below.

Because the Ruby locale is required to execute Ruby scripts, install the Ruby locale and Ruby's package manager Gems first.

Then use gem to install the interface between Redis and Ruby.

RubyGems is a package manager for Ruby that provides a standard format for distributing Ruby programs and libraries, as well as a tool for managing package installations.

RubyGems is designed to easily manage the tools installed by gem, as well as the servers used to distribute gem. This is similar to apt-get under Ubuntu and pip to yum,Python of Centos.

When installing the interface between Ruby and Redis

Error

Install the Geme package from the Gem source

Gem install [gemname]

Install the Geme package locally

Gem install-l [gemname] .gem

# gem install-l redis-4.1.0.gem

ERROR: Loading command: install (LoadError)

Cannot load such file-zlib

ERROR: While executing gem... (NoMethodError)

Undefined method `invoke_with_build_args' for nil:NilClass

Reason for reporting an error

Missing zlib library dependencies

Solve the error report

1 install the zlib library first

Yum install zlib-devel

2 integrate zlib library into Ruby environment

Enter the relevant directory # cd ruby-2.3.8/ext/zlib# ruby extconf.rb checking for deflateReset () in-lz... Yeschecking for zlib.h... Yeschecking for crc32_combine () in zlib.h... Yeschecking for adler32_combine () in zlib.h... Yeschecking for z_crc_t in zlib.h... Yescreating Makefile# makelinking shared-object zlib.so# make install/bin/install-c-m 0755 zlib.so / usr/local/ruby/lib/ruby/site_ruby/2.3.0/x86_64-linux

Reinstallation succeeded

The above is all the contents of the article "how to report an error in gem install redis". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report