LoginSignup
3
3

More than 5 years have passed since last update.

vagrant-proxyconfをマニュアルインストール

Posted at

1.vagrant plugin installで入れられない

Installing the 'vagrant-proxyconf' plugin. This can take a few minutes...
The plugin 'vagrant-proxyconf' could not be found in local or remote
repositories. Please check the name of the plugin and try again.

=> なのでここを参考にマニュアルインストールを行う

2.git clone

git clone https://github.com/tmatilai/vagrant-proxyconf
cd vagrant-proxyconf

※途中rubyのversion問題でコケてrbenvでversionアップ対応しようとしたらversionアップでつまった・・
こちらを参考にパッチを当てて解決

3.bundle install
=> bundleが入ってなかったのでインストール(proxy環境下)

 sudo gem install bundler --http-proxy http://<proxy_host>:<proxy_port>

4.再びbundle install

bundle install

5.bundle exec rake buildでビルド

bundle exec rake build

6.vagrant plugin installでインストール

vagrant plugin install pkg/vagrant-proxyconf*.gem
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3