New Mathematica user, attempting to install NCAlgebra to Mathematica Online. Following instructions from https://github.com/NCAlgebra/NC/blob/master/README.md , I first tried:
Import["https://raw.githubusercontent.com/NCAlgebra/NC/master/NCExtras/NCWebInstall.m", CharacterEncoding -> "UTF8"];
This fails with:
Transfering$Failed[Unzip
PrivategetContentLength[]]Round[-----------------------------------------]1048576MBfrom: https://github.com/NCAlgebra/NC/archive/master.zip Pleasebepatient...
Java ::excptn :AJavaexceptionoccurred:java.lang.NoClassDefFoundError:Couldnotinitializeclasssun.security.ssl.SSLContextImpl$DefaultSSLContextatjava.base/java.lang.Class.forN…eflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)atjava.base/java.lang.reflect.Method.invoke(Method.java:566).
Somethingwentwrong.Aborting...
I also tried:
CloudImport["https://raw.githubusercontent.com/NCAlgebra/NC/master/NCExtras/NCWebInstall.m", CharacterEncoding -> "UTF8"];
which fails with or without the second argument returning: CloudObject: The URL https://raw.githubusercontent.com/NCAlgebra/NC/master/NCExtras/NCWebInstall.m is not valid.
Eventually, I downloaded the content locally, compressed and uploaded it Base/Applications, and extracted it using:
dir=CreateDirectory["NC"]
ExtractArchive["NC-master.tgz",dir, OverwriteTarget->True]
FileNames[]
which returns {._NC,NC-master.tgz} ._NC is new, not sure why it's not just NC... also running
<< NC`
per the readme just returns: Cannot open NC`.
I'm not really sure where to go from here, just trying to get the hang of NCAlgebra and see if it suits my purposes before my trial expires. Any help would be appreciated.