Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.24 KB

INSTALL.md

File metadata and controls

53 lines (35 loc) · 1.24 KB

Installation Guide

One can install the QuantumPlaybook package using the paclet system that has recently beeen introduced by Wolfram Research.

Requirements

Installation

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.

Update

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[]

Uninstall

If you do not want to use QuantumPlaybook any longer, just evaluate the following code:

PacletUninstall["QuantumPlaybook"]