mirror of
https://github.com/foxlet/macOS-Simple-KVM.git
synced 2024-11-05 10:49:46 +01:00
8 lines
144 B
Bash
8 lines
144 B
Bash
|
set +x;
|
||
|
SCRIPTDIR="$(dirname "$0")";
|
||
|
cd $SCRIPTDIR
|
||
|
sudo easy_install pip
|
||
|
sudo -H pip install -r requirements.txt
|
||
|
python fetch-macos.py -l
|
||
|
exit;
|