Jay Qi
Jay Qi
I was also having this issue with Kitematic 0.17.9 on macOS 10.15.2. I just upgraded to Kitematic 0.17.10 (released Jan 7) and it seems to have fixed it.
> automatically style these to put each param on a new line There's an [open issue](https://github.com/mkdocstrings/mkdocstrings/issues/110) on mkdocstrings requesting this feature. > we strip the In/Out blocks from the notebooks...
Hi @remi-braun, what version of Python 3.7 are you using? I suspect that there was a change to pathlib internals, and this error is caused by compatibility. I'm not certain...
I'm not a power user of Linux package managers, but some things to try or consider: - Did you run `apt-get update`? I believe this updates the package repository information,...
Having `shutils`-equivalent functions is also my favored solution to this problem. --- This is also partly related to some of the typing issues we've encountered with `AnyPath` (see https://github.com/drivendataorg/cloudpathlib/issues/146). I...
@martindurant @pjbull I took a quick stab at making `FsspecClient` and `FsspecPath` classes that is backed by an fsspec `FileSystem` in #109. ``` from cloudpathlib.fsspec import FsspecClient, FsspecPath from s3fs...
So I think ```python pyvips.read_image(str(Path(S3Path("s3://..."))) ``` could be slightly more concisely written as ```python pyvips.read_image(os.fspath(S3Path("s3://...")) ``` We could also add a method/property like `CloudPath.fspath` as a shortcut.
The gist of the problem here is that our `os.PathLike` support fails in write situations. Because `CloudPath` implements `__fspath__` and therefore the `os.PathLike` protocol, it can be accepted by anything...
Hi @grisaitis. This is indeed another case of the problem documented by this issue—cloud paths do not support being directly called with third-party functions (like `pd.to_parquet(cloud_path)`) that generically do writes....
@grisaitis there are ~two~ three directions of workarounds you can take: _Update: See best option (0) in the [following comment](https://github.com/drivendataorg/cloudpathlib/issues/128#issuecomment-1248622660)_ (1): Introduce explicit local file paths and then use cloudpathlib...