How do I switch from a system wide install to a user local install?
If you have installed netbrain/zwift system wide and want to switch to a user local install instead so you don’t need to enter your root password when there is an update available, follow the steps below:
-
Download the install script and make it executable
foo@bar:~$ wget https://raw.githubusercontent.com/netbrain/zwift/master/bin/install.sh foo@bar:~$ chmod u+x install.sh -
Uninstall netbrain/zwift (but keep your settings)
foo@bar:~$ sudo ./install.sh --uninstall --auto-confirm -
Install netbrain/zwift for the current user
foo@bar:~$ ./install.sh --auto-confirm -
Remove the install script since it is no longer needed
foo@bar:~$ rm install.sh