Ryan Williams

Results 184 comments of Ryan Williams

Yes, but if e.g. `awscli` isn't already installed, installing it can change the versions of things that are already installed, including breaking them. The "Simpler example" section above illustrates this...

To be clear, it's possible for the following to happen: - user builds image with valid `*boto*` versions - user sets that image as `$METAFLOW_BATCH_CONTAINER_IMAGE`, runs a flow `--with batch`...

I'm not sure the issue with `brew`/`osxfuse` is specific to M1 hardware. I had to work around it on a 2017 (pre-M1) macbook pro recently. I think I just uninstalled...

Just trying this on my M1 macbook, and sure enough, `brew install s3fs` just fails w the error msg reported above: ``` $ brew install s3fs Error: s3fs has been...

brew install --cask osxfuse worked ``` ==> Tapping homebrew/cask Cloning into '/opt/homebrew/Library/Taps/homebrew/homebrew-cask'... remote: Enumerating objects: 569140, done. remote: Counting objects: 100% (27/27), done. remote: Compressing objects: 100% (15/15), done. remote:...

Trying to build `s3fs` from source: Download+Untar: ```bash tar xvzf s3fs-fuse-1.89.tar.gz cd s3fs-fuse-1.89 ``` ./autogen.sh ``` --- Make commit hash file ------- --- Finished commit hash file --- --- Start...

Revisiting this again about a year after [my last attempt](https://github.com/s3fs-fuse/s3fs-fuse/issues/1632#issuecomment-833036048)… ```bash brew install automake macfuse openssl@3 git clone https://github.com/s3fs-fuse/s3fs-fuse.git && cd s3fs-fuse git checkout v1.91 # current latest release ./autogen.sh...

I'm hitting the same issue reading from a file with multiple JSON objects concatenated in it; I understand the logic behind expecting a valid one-object JSON blob, but think that...

Unfortunately I think I worked around this by adding some caller code (outside of Oboe) that wrapped my JSON objects in a JSON array (and added commas between them); of...

Debugging this, the error comes from referencing `Submodule._name` in `Submodule.__str__` or `Submodule.__repr__`; I think accessing the Submodule from the Tree works as expected, but displaying it is crashing. Continuing to...