Open meteokr opened 1 year ago
Good job on the adapted dockerfile, may I include this into the repo? Sorry for answering late, I'm by no means a docker expert. Googled this error and indeed it seems to be caused by your python version: https://github.com/huggingface/datasets/issues/5230
I'm running Bark successfully with Python 3.10.
i am facing the same issue with version python 3.11.3 i cannot degrade the version as i have some other stuff which require 3.11 File "/opt/homebrew/Cellar/python@3.11/3.11.3/Frameworks/Python.framework/Versions/3.11/lib/python3.11/dataclasses.py", line 815, in _getfield raise ValueError(f'mutable default {type(f.default)} for field ' ValueError: mutable default <class 'fairseq.dataclass.configs.CommonConfig'> for field common is not allowed: use default factory @C0untFloyd
only happing when i am trying to clone the voice
I am running the container version of this on a Linux host. The current Dockerfile doesn't build, so I made some small edits. Pip complains if the dependencies are installed on top of system packages, and while I'm comfortable with Docker I'm not very familiar with Python pkg management. I added python3-venv to the system package list, then changed the dependencies install steps to use a virtual environment and then installing so that I could get a build going.
This got a successful build, but the actual error I get on run is this.
Is this an error on my python install, or something else?