-
-
Save LuisPalacios/e806f992f2e593d6bc68 to your computer and use it in GitHub Desktop.
Install virt-manager osx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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