get-stick-bugged-lol icon indicating copy to clipboard operation
get-stick-bugged-lol copied to clipboard

it didnt work

Open BestGiter opened this issue 8 months ago • 1 comments

Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "C:\Users\Admin1.DESKTOP-9VNM3AF\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\gsbl\__main__.py", line 34, in <module>
    main()
  File "C:\Users\Admin1.DESKTOP-9VNM3AF\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\gsbl\__main__.py", line 26, in main
    from gsbl.stick_bug import StickBug
  File "C:\Users\Admin1.DESKTOP-9VNM3AF\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\gsbl\stick_bug.py", line 6, in <module>
    from moviepy import editor
ImportError: cannot import name 'editor' from 'moviepy' (C:\Users\Admin1.DESKTOP-9VNM3AF\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\moviepy\__init__.py)

BestGiter avatar Mar 18 '25 19:03 BestGiter

The most recent version of moviepy introduced breaking changes. In order to run this, you'll need to use an older version of Pillow and MoviePy.

pip install Pillow==9.5.0
pip install moviepy==1.0.3

kylephillipsau avatar Sep 18 '25 02:09 kylephillipsau

The most recent version of moviepy introduced breaking changes. In order to run this, you'll need to use an older version of Pillow and MoviePy.

pip install Pillow==9.5.0 pip install moviepy==1.0.3

This fixed it for me, after uninstalling the existing modules.

Dynamikftw avatar Oct 13 '25 12:10 Dynamikftw