«rubygems» 태그된 질문

5
Ubuntu 10.04에 rmagick를 설치하는 방법?
여기까지 내가 한 일이 있습니다. sudo apt-get install imagemagick libmagickcore-dev 이것은 오류가 발생하지 않았으므로 ImageMagick이 올바르게 설치되었다고 생각합니다. 그런 다음 gem 설치를 시도했습니다. sudo gem install rmagick 그 결과 다음과 같은 오류가 발생했습니다. ERROR: Error installing rmagick: ERROR: Failed to build gem native extension. /usr/bin/ruby1.8 extconf.rb checking for Ruby version …


11
CentOS에서 ImageMagick을 컴파일했는데 RMagick이 설치되지 않습니다
ImageMagick을 통해 설치했습니다 (ImageMagick 6.7.3-7 사용). ./configure --prefix=/usr && make && make install 내가하려고 할 때 gem install imagemagick 나는 얻다 Building native extensions. This could take a while... ERROR: Error installing rmagick: ERROR: Failed to build gem native extension. /usr/bin/ruby extconf.rb checking for Ruby version >= 1.8.5... yes checking …


1
Mac OS X 10.6.4에서 Ruby, Ruby gem을 완전히 제거하는 방법
대부분의 루비 스트들은이 글을 읽을 때 충격을받을 수 있지만, 루비 프레임 워크와 Mac OS X 10.6.4와 함께 제공되는 모든 툴과 젬을 완전히 제거 할 수 있는지 알고 싶습니다. 도움을 주시면 감사하겠습니다. (그리고 내가 이것을하지 않을 것이라고 생각한다면 설명도) 감사
13 macos  mac  ruby  rubygems 

1
모든 루비 보석을 다시 만드는 방법은 무엇입니까?
OS X 10.8의 네이티브 C 컴파일러에서 Ruby gem을 올바르게 빌드하지 못하는 것으로 알려진 문제가 발생하여 제안대로 GCC를 설치했습니다. 이미 설치된 gem을 모두 rvm에서 어떻게 재 구축합니까? 나는 rvm update --rubygems 1.9.3(적어도 문서에 따르면) 작동하는 것처럼 보였지만 다소 암호 오류 메시지가 나타납니다. ERROR: rvm update has been removed. See 'rvm get' …
10 ruby  rvm  rubygems 

3
Ubuntu 9.10에 MySQL Ruby Gem을 설치하는 방법은 무엇입니까?
MySQL 용 Ruby Gem 설치에 문제가 있습니다. 이것은 내가 실행중인 명령입니다. sudo gem install mysql 이것은 내가 얻는 결과입니다. Building native extensions. This could take a while... ERROR: Error installing mysql: ERROR: Failed to build gem native extension. /usr/bin/ruby1.8 extconf.rb checking for mysql_query() in -lmysqlclient... no checking for main() in …
9 mysql  ruby  rubygems  gem 

5
/ usr / local / bin에 Homebrew가 설치된 Ruby 1.9 gem 바이너리의 별칭을 어떻게 지정합니까?
Homebrew의 Ruby 1.9는 rubygems와 함께 제공됩니다. 그렇게하면 gem install ...파일과 바이너리가 긴 경로에 설치됩니다. 예를 들어, 번 들러는 다음 위치에 설치됩니다. /usr/local/Cellar/ruby/1.9.3-p0/lib/ruby/gems/1.9.1/gems/bundler-1.0.21/bin/bundle 내가 가지고 싶은 gem자동으로 같은 일반적인 위치에이 바이너리 심볼릭 링크 /usr/local/bin내가 수동으로 바이너리의 각 연결하지 않도록합니다. 이게 가능해?

3
플러그인을 방랑자로 설치할 수 없음 : 설치 중에도 gem 의존성이 실패 함
cygwin 64 내에서 Windows 7에 vagrant-vbguest 플러그인 을 설치하려고합니다 . $ vagrant plugin install vagrant-vbguest Installing the 'vagrant-vbguest' plugin. This can take a few minutes... Bundler, the underlying system Vagrant uses to install plugins, reported an error. The error is shown below. These errors are usually caused by misconfigured plugin …

1
iStats 용 루비 보석을 설치하는 데 문제가 있습니다.
나는 루비 보석을 통해 iStats를 설치하려고합니다. 먼저 명령을 실행했습니다. xcode-select --install 출력은 다음과 같습니다. xcode-select: error: command line tools are already installed, use "Software Update" to install updates. 그래서 괜찮 았어. 그 때 나는 달렸다 : sudo gem install iStats 출력은 다음과 같습니다. Building native extensions. This could take a …

0
내 Mac에서 Ruby 오류
내 아이맥에서 Ruby에 문제가 있습니다 (2010 년 초). Mac OS X Yosemite의 미리보기가 설치되어 있지만 영원히 이러한 문제가 발생했습니다. 따라서 OS X이 오류라는 것을 상상할 수 없습니다. 루비 명령, 보석 또는 응용 프로그램 (Cocoapods와 같은)을 시도 할 때마다 다음 오류가 발생합니다. /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- xcodeproj/prebuilt/universal.x86_64-darwin14-2.0.0/xcodeproj_ext (LoadError) …


1
Rails 시작 스크립트가 두 번 실행됩니다.
Ruby on Rails를 새로 설치하는 데 어려움을 겪고 있습니다. 내 응용 프로그램을 MySQL과 함께 사용하고 싶습니다. 문제는 다음과 같습니다. 기본 데이터베이스 어댑터 (sqlite)를 사용할 때 서버가 문제없이 시작되지만 mysql2로 전환하면 서버가 시작되지 않습니다. 이것은 내가 얻는 오류이다. bin / rails : 6 : 경고 : 이미 초기화 된 상수 APP_PATH …

2
Windows Vista에서 rdiscount ruby ​​gem을 설치하는 방법은 무엇입니까?
나는 비스타를 가지고 있고 루비 보석을 설치하려고합니다 - 'rdiscount'그리고 다음과 같은 오류가 나옵니다 ... 이것에 대한 답은 무엇입니까? $ gem install rdiscount Building native extensions. This could take a while... ERROR: Error installing rdiscount: ERROR: Failed to build gem native extension. c:/Ruby/bin/ruby.exe extconf.rb checking for random()... no checking for srandom()... …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.