How to use Vagrant with Parallels Desktop

62 users found this article helpful

This article only briefly explains how to set up Vagrant to work with Parallels Desktop. For more information and documentation, please visit Parallels + Vagrant website.


Note: Vagrant plugin is available in Parallels Desktop Pro and Business Editions only.


Starting with Parallels Desktop 18.3.0, you can create a macOS virtual machine box with Vagrant and Parallels Desktop. Full instructions are available here: KB 129720.

First, make sure that you have Parallels Desktop for Mac Pro or Business Edition and Vagrant properly installed.

After installing Vagrant, install and update Parallels plugin for Vagrant.

  1. Start Terminal and execute:

    vagrant plugin install vagrant-parallels
    

    NOTE: the command above will download and install the latest version of Parallels plugin for Vagrant. If you believe your current version of plugin needs to be updated, please use the following command:

    vagrant plugin update vagrant-parallels
    

    NOTE: You may receive an error message stating that json is not installed, or that Xcode EULA is not agreed. Proceed with instructions written in the error message.

  2. Now create a directory where you would like to store Vagrant boxes:

    mkdir new_vagrant_project
    cd new_vagrant_project
    
  3. Now initialize Vagrant environment (we recommend using boxes prepared by the Bento community project) :

    If you are using an Intel Mac:

    vagrant init bento/ubuntu-22.10

    If you are using an M-series Mac:

    vagrant init bento/ubuntu-22.04-arm64
  4. Create and run a virtual machine:

    vagrant up

The Parallels provider has a higher priority than any other provider built into Vagrant. Parallels provider will be used by default for your Vagrant virtual machines.

If you are using multiple Vagrant providers simultaneously and want to run your virtual machine with another provider, please read the general basic usage page for providers.

In order to set up a new project, please check Getting Started page.

For configuration, please check this webpage.

Use this page for networking.

Was this article helpful?

Tell us how we can improve it.