Skip to content

Instantly share code, notes, and snippets.

@LuisPalacios
Forked from holms/virt-manager-osx
Last active October 5, 2016 14:32
Show Gist options
  • Save LuisPalacios/e806f992f2e593d6bc68 to your computer and use it in GitHub Desktop.
Save LuisPalacios/e806f992f2e593d6bc68 to your computer and use it in GitHub Desktop.
Install virt-manager osx
# Adapted to user HOME install
# Sources
mkdir -p $HOME/github
cd $HOME/github
git clone https://github.com/virt-manager/virt-manager
cd virt-manager
sudo port -v install intltool py27-pygtk
# Change destination install directory instead of /usr, due to
# OSX System Integrity Protection (rootless2), a new security feature
# of OS X El Capitan, protected locations are: /System, /bin, /sbin and /usr (but not /usr/local).
mkdir $HOME/virt-manager
cd $HOME/github/virt-manager
python setup.py configure --prefix $HOME/virt-manager
python setup.py install --prefix $HOME/virt-manager
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment