skip to Main Content

I recently installed metasploit on my Ubuntu 20.04 VM.
I ran sudo bundler install
It finishes successfully.
Then I ran ./msfconsole.
It says >could not find mini_portile2 – 2.8.0 in any of the sources. Run ‘bundle install’ to install missing gems.

What can I do about this please

2

Answers


  1. sudo gem install mini_portile2
    

    Should help

    Login or Signup to reply.
  2. The right command to install missing portile2 dependency:

    gem install mini_portile2 -v 2.8.0
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search