openai / jukebox

Code for the paper "Jukebox: A Generative Model for Music"
https://openai.com/blog/jukebox/
Other
7.78k stars 1.4k forks source link

Encountering Errors with OpenAI Jukebox in Google Colab #290

Open ShaliniAnandaPhD opened 10 months ago

ShaliniAnandaPhD commented 10 months ago

Hello everyone,

I'm currently working with the OpenAI Jukebox model in a Google Colab environment and have run into some challenging errors. Despite following the setup instructions carefully, I'm encountering issues related to the installation of specific dependencies, namely numba and llvmlite. The errors arise during the building wheel process for these packages.

Here are the steps I've taken and the errors I've encountered:

  1. I tried installing numba and llvmlite with the commands:

    !pip install numba==0.48
    !pip install llvmlite==0.31.0

    However, this resulted in errors related to building wheels for these packages.

  2. The specific error messages I received are:

    error: subprocess-exited-with-error × python setup.py bdist_wheel did not run successfully.

I'm using the latest version of the OpenAI Jukebox Google Colab notebook. I suspect the issue might be related to version compatibility or conflicts with other dependencies in the Colab environment.

Has anyone else faced similar issues or have any suggestions on how to resolve this? Any help or guidance would be greatly appreciated!

Thank you!

luismrguimaraes commented 9 months ago

Also having the same problem. Did you find a solution?

luismrguimaraes commented 9 months ago

Using this fork from mackamann seems to be working so far.

ShaliniAnandaPhD commented 9 months ago

@luismrguimaraes Thank you