Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 779 Bytes

Creating_A_VM.md

File metadata and controls

46 lines (31 loc) · 779 Bytes

Running Good-Grub in Python Virtual Environment

To run Good-Grub in Python virtual environment follow the steps:

  1. Install virtualenv package:

    pip install virtualenv
  2. Create virtual environment (replace my-Grub-env with your virtual environment name):

    virtualenv my-Grub-env
  3. Activate the environment.

    1. For Windows run

      my-Grub-env\Scripts\activate
    2. For Linux and Mac run

      source my-Grub-env/bin/activate
  4. Run Good-Grub:

    cd Good-Grub
  5. To deactivate virtual environment run:

    deactivate

Still stumped ??

The documentation for installing VM: https://virtualenv.pypa.io/en/latest/installation/