One can install the QuantumPlaybook package using the paclet
system that has recently beeen introduced by Wolfram Research.
Copy the following code, and just evaluate it in your Mathematica(R) Notebook:
Module[
{ ps },
ps = PacletSiteRegister[
"https://github.com/quantum-mob/PacletRepository/raw/main",
"Quantum Mob Paclet Server"
];
PacletSiteUpdate[ps];
PacletInstall["Q3"];
PacletInstall["QuantumPlaybook"]
]
Note that along with QuantumPlaybook, it also installs the main application Q3 for your convenience.
Once installed, QuantumPlaybook will automatically check for updates and install the newest update (if any).
If you want to check for update manually, use the following function:
QuantumPlaybookCheckUpdate[]
In case there is an update, you can install it by using the following function:
QuantumPlaybookUpdate[]
If you do not want to use QuantumPlaybook any longer, just evaluate the following code:
PacletUninstall["QuantumPlaybook"]