Results 44 comments of b3m2a1

@kubaPod good point. I haven't been setting anything outside of what the stylesheet does/is necessary to get the right functionality. I probably should add this if I'm going to include...

Looks like something funky is happening in the actual load process. I.e. ```BTools`Package`Scope`Private`Constants`$TopLevelLoad``` isn't getting a value the way it should. I tried to turn off autocompletions when BTools gets...

Ah that's my bad I had the wrong thing in `Git.m`. I accidentally registered `"fetch"` as the call to `GitReset`. *Should* be fine once I push the new version. At...

What's the error you're getting? The flow works for me on the same MacOS. Is it an issue in the `InstallPython` step?

Oh shoot have you run ``

@msollami Hmm... I think I've hit that one for others before. If I had to guess there's something weird going on with the .so file compilation. If you're willing to...

Ahh. That would be an issue. Do you have python 3 installed? Another thing I forgot to mention in the readme is that this is a python3 package as the...

Yeah try: ```mathemaitca InstallPython["python"] ``` where the first argument is the executable to use or a version string. Conda's been a problem for compilation and things in the past but...

Encoders for `PackedArray`, `Image`, `RawArray`, and `SparseArray` have been written. Still need `Graph`, `Region`, `MeshRegion`, etc.

I was able to monkey patch this in like ```python def patch_pinfo(): from IPython.core.oinspect import Inspector from IPython.core.display import display if not hasattr(Inspector, '_og_pinfo'): Inspector._og_pinfo = Inspector.pinfo def pinfo(self, obj,...