Felipe Coury
Felipe Coury
A few more data points: - Thought it could be related to the fact that I use fish, tried with bash and zsh and same issue - v1.0.2 just came...
It works after I manually installed the extension: ``` fcoury@mba ~/.c/l/n/@anthropic-ai/claude-code/vendor > $ code --install-extension claude-code.vsix Installing extensions... Extension 'claude-code.vsix' was successfully installed. > $ claude ╭───────────────────────────────────────────────────╮ │ ✻ Welcome...
> I was also able to install manually - thank you [@fcoury](https://github.com/fcoury) ! `/status` shows: You're welcome! Glad you were able to install it! > I imagine the cause in...
> However the `1: ENOENT` error suggests it tried to install something, but failed to find a file or directory... > > It seems they essentially call `execFile('code',...)` - so...
> Using a symlink instead of an alias does the trick: In mine and other mac user's case it weirder: ``` > $ which code /usr/local/bin/code > $ ls -lad...
> Okay for me fixed it: my fish.config had a set to add the code binary directly to the PATH - but I also had the symlink present in /usr/local/bin...
More things I tried. Created this file: ```python import asyncio from playwright.async_api import async_playwright async def main(): async with async_playwright() as p: print("Launching browser...") try: # Try launching Chromium specifically...
> [@fcoury](https://github.com/fcoury) Can you share a code sample here. More importantly, are you using multiple instances of AsyncWebCrawler in one go? What do you mean code sample? Did you read...
I managed to fix this by unsetting the env var DYLD_LIBRARY_PATH. This was causing Playwright to load the wrong binaries and libraries.
I am, Felipe Coury. The mentioned file is also by me and the source can be found on https://github.com/fcoury/oxide-ui. Thank you.