Ivan Lengyel
Ivan Lengyel
Yes, thanks. I was able to install it from commit [c373a84](https://github.com/facebookresearch/pytorch3d/commit/c373a84400328d9236226b6aef40bb2bde413cd0). Happy to test any new release in mac. Just ping me.
For the colab notebook this fixes the issues: Replace with the following to install fastaiv1 ```python # !pip install -r colab_requirements.txt !pip install git+https://github.com/fastai/fastai1.git ```
It seems to be a problem of `pipreqs`, and since this lib uses it under the hood thats might be the reason of the error. Let me investigate and try...
I have the same problem using Mac M3 I opened an [issue](https://github.com/mcfletch/pyopengl/issues/117) in pyopengl project, but the community seems to be kind of dead there. Any alternatives on how to...
I managed to install p5 in an M3 without opengl-accelerate but I am not sure which are the limitations yet. How do to it. 1. Download the requirements [file](https://github.com/p5py/p5/blob/master/requirements.txt) 2....
same error here.
Replace with the following to install fastaiv1 ```python # !pip install -r colab_requirements.txt !pip install git+https://github.com/fastai/fastai1.git ```
Same problem here: - M3 - Sonoma 14.4.1 - Python 3.11.9 - iPython 8.24.0 - matplotlib 3.8.4 - ipykernel 6.29.3
Some extra info, import py5 from ipyhon (without using a jupyter notebook) works ``` In [3]: import py5 ...: ...: def setup(): ...: py5.size(640, 360) ...: py5.background(255) ...: ...: def...
Thanks for the questions, let me reply inline. > Hello, @ivanlen , thank you for opening this issue. > > I'm guessing this is going to be a challenging issue...