Gyeongjae Choi
Gyeongjae Choi
> What this means is also that the prebundling of pyodide by bundler like Vite is kind of useless isn't it? Since eventually, to install arbitrary packages, we still need...
@yansenlei I don't have any experience with vue, and vue is not a bundler as far as I understand. So it depends on which bundler you use.
> By the way @ryanking13, is it a guarantee that pyodide is always going to be forever loadable from CDN? No, there are no guarantees we can make. But at...
``` Traceback (most recent call last): File "/lib/python3.12/site-packages/tqdm/std.py", line 1148, in __del__ self.close() File "/lib/python3.12/site-packages/tqdm/std.py", line 1267, in close if self.disable: ^^^^^^^^^^^^ AttributeError: 'tqdm' object has no attribute 'disable' ```...
Hi, we have moved the package recipes to [pyodide/pyodide-recipes](https://github.com/pyodide/pyodide-recipes). If you are still interested in this PR, please open it in that repository. Thanks!
> Also, Electron developers provide their own Linux arm64 ChromeDriver to work with Chromium, which we could now use (we'll need to download Chromium instead of Chrome – while I...
> Is it available already? @Ultrafeel No, it is not ready.
> I got NumPy to build with not a lot of effort, which is great. Next, I'm going to the NumPy dependents. SciPy v1.13.0 is the first version to support...
Could you share with me the error you get? Some of the package versions in our docker image (e.g. pytest) is outdated so it may cause some error, but I...
> python packages/numpy/test_numpy.py I think you need to call pytest not python. ``` pytest packages/numpy/test_numpy.py ``` FYI: I generally prefer verbose mode + chrome browser when testing locally. ``` pytest...