This repository hosts a few paclets we are maintaining:
- Q3
- QuantumPlaybook
- WorkbookTools -- Some utilities and stylesheets for QuantumWorkbook
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",
"Quamtum Mob's Wolfram Language Paclet Repository"
];
PacletSiteUpdate[ps]
]
To install paclets, use this code:
PacletInstall["Q3"]
Or you can replace "Q3" with other paclet you like to install.
To find available versions of the paclets, evaluate the follwoing statement:
PacletFindRemote["Q3"]
PacletFindRemote["QuantumPlaybook"]
If you do not want to use this server any longer, then evaluate the following statements:
PacletSiteUnregister["https://github.com/quantum-mob/PacletRepository/raw/main"]
PacletSiteUpdate @ PacletSites[]