Skip to content

Instantly share code, notes, and snippets.

@hchasens
Created June 21, 2024 20:19
Show Gist options
  • Save hchasens/b406c085e663350dbe33ca3a14940da4 to your computer and use it in GitHub Desktop.
Save hchasens/b406c085e663350dbe33ca3a14940da4 to your computer and use it in GitHub Desktop.
Openedai-Speech PR#18 Build Error
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.tts.utils.text.phonemizers' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.tts.utils.text.phonemizers' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.utils' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.utils' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.utils' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.utils' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.utils' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.utils.audio' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.utils.audio' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.utils.audio' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.utils.audio' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.utils.audio' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vc.configs' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vc.configs' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vc.configs' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vc.configs' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vc.configs' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vc.models' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vc.models' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vc.models' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vc.models' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vc.models' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vc.modules' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vc.modules' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vc.modules' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vc.modules' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vc.modules' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vc.modules.freevc' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vc.modules.freevc' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vc.modules.freevc' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vc.modules.freevc' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vc.modules.freevc' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vc.modules.freevc.speaker_encoder' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vc.modules.freevc.speaker_encoder' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vc.modules.freevc.speaker_encoder' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vc.modules.freevc.speaker_encoder' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vc.modules.freevc.speaker_encoder' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vc.modules.freevc.wavlm' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vc.modules.freevc.wavlm' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vc.modules.freevc.wavlm' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vc.modules.freevc.wavlm' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vc.modules.freevc.wavlm' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vocoder' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vocoder' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vocoder' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vocoder' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vocoder' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vocoder.configs' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vocoder.configs' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vocoder.configs' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vocoder.configs' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vocoder.configs' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vocoder.datasets' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vocoder.datasets' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vocoder.datasets' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vocoder.datasets' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vocoder.datasets' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vocoder.layers' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vocoder.layers' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vocoder.layers' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vocoder.layers' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vocoder.layers' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vocoder.models' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vocoder.models' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vocoder.models' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vocoder.models' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vocoder.models' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 /tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/setuptools/command/build_py.py:215: _Warning: Package 'TTS.vocoder.utils' is absent from the `packages` configuration.
#11 27.40 !!
#11 27.40
#11 27.40 ********************************************************************************
#11 27.40 ############################
#11 27.40 # Package would be ignored #
#11 27.40 ############################
#11 27.40 Python recognizes 'TTS.vocoder.utils' as an importable package[^1],
#11 27.40 but it is absent from setuptools' `packages` configuration.
#11 27.40
#11 27.40 This leads to an ambiguous overall configuration. If you want to distribute this
#11 27.40 package, please make sure that 'TTS.vocoder.utils' is explicitly added
#11 27.40 to the `packages` configuration field.
#11 27.40
#11 27.40 Alternatively, you can also rely on setuptools' discovery methods
#11 27.40 (for example by using `find_namespace_packages(...)`/`find_namespace:`
#11 27.40 instead of `find_packages(...)`/`find:`).
#11 27.40
#11 27.40 You can read more about "package discovery" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
#11 27.40
#11 27.40 If you don't want 'TTS.vocoder.utils' to be distributed and are
#11 27.40 already explicitly excluding 'TTS.vocoder.utils' via
#11 27.40 `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
#11 27.40 you can try to use `exclude_package_data`, or `include-package-data=False` in
#11 27.40 combination with a more fine grained `package-data` configuration.
#11 27.40
#11 27.40 You can read more about "package data files" on setuptools documentation page:
#11 27.40
#11 27.40 - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#11 27.40
#11 27.40
#11 27.40 [^1]: For Python, any directory (with suitable naming) can be imported,
#11 27.40 even if it does not contain any `.py` files.
#11 27.40 On the other hand, currently there is no concept of package data
#11 27.40 directory, all directories are treated like packages.
#11 27.40 ********************************************************************************
#11 27.40
#11 27.40 !!
#11 27.40 check.warn(importable)
#11 27.40 copying TTS/.models.json -> temp_build/TTS
#11 27.40 copying TTS/VERSION -> temp_build/TTS
#11 27.40 creating temp_build/TTS/bin
#11 27.40 copying TTS/bin/__init__.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/collect_env_info.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/compute_attention_masks.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/compute_embeddings.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/compute_statistics.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/eval_encoder.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/extract_tts_spectrograms.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/find_unique_chars.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/find_unique_phonemes.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/remove_silence_using_vad.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/resample.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/synthesize.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/train_encoder.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/train_tts.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/train_vocoder.py -> temp_build/TTS/bin
#11 27.40 copying TTS/bin/tune_wavegrad.py -> temp_build/TTS/bin
#11 27.40 creating temp_build/TTS/config
#11 27.40 copying TTS/config/__init__.py -> temp_build/TTS/config
#11 27.40 copying TTS/config/shared_configs.py -> temp_build/TTS/config
#11 27.40 creating temp_build/TTS/demos
#11 27.40 creating temp_build/TTS/demos/xtts_ft_demo
#11 27.40 copying TTS/demos/xtts_ft_demo/xtts_demo.py -> temp_build/TTS/demos/xtts_ft_demo
#11 27.40 creating temp_build/TTS/demos/xtts_ft_demo/utils
#11 27.40 copying TTS/demos/xtts_ft_demo/utils/formatter.py -> temp_build/TTS/demos/xtts_ft_demo/utils
#11 27.40 copying TTS/demos/xtts_ft_demo/utils/gpt_train.py -> temp_build/TTS/demos/xtts_ft_demo/utils
#11 27.40 creating temp_build/TTS/encoder
#11 27.40 copying TTS/encoder/README.md -> temp_build/TTS/encoder
#11 27.40 copying TTS/encoder/__init__.py -> temp_build/TTS/encoder
#11 27.40 copying TTS/encoder/dataset.py -> temp_build/TTS/encoder
#11 27.40 copying TTS/encoder/losses.py -> temp_build/TTS/encoder
#11 27.40 creating temp_build/TTS/encoder/configs
#11 27.40 copying TTS/encoder/configs/base_encoder_config.py -> temp_build/TTS/encoder/configs
#11 27.40 copying TTS/encoder/configs/emotion_encoder_config.py -> temp_build/TTS/encoder/configs
#11 27.40 copying TTS/encoder/configs/speaker_encoder_config.py -> temp_build/TTS/encoder/configs
#11 27.40 creating temp_build/TTS/encoder/models
#11 27.40 copying TTS/encoder/models/base_encoder.py -> temp_build/TTS/encoder/models
#11 27.40 copying TTS/encoder/models/lstm.py -> temp_build/TTS/encoder/models
#11 27.40 copying TTS/encoder/models/resnet.py -> temp_build/TTS/encoder/models
#11 27.40 creating temp_build/TTS/encoder/utils
#11 27.40 copying TTS/encoder/utils/__init__.py -> temp_build/TTS/encoder/utils
#11 27.40 copying TTS/encoder/utils/generic_utils.py -> temp_build/TTS/encoder/utils
#11 27.40 copying TTS/encoder/utils/prepare_voxceleb.py -> temp_build/TTS/encoder/utils
#11 27.40 copying TTS/encoder/utils/training.py -> temp_build/TTS/encoder/utils
#11 27.40 copying TTS/encoder/utils/visual.py -> temp_build/TTS/encoder/utils
#11 27.40 creating temp_build/TTS/server
#11 27.40 copying TTS/server/README.md -> temp_build/TTS/server
#11 27.40 copying TTS/server/__init__.py -> temp_build/TTS/server
#11 27.40 copying TTS/server/conf.json -> temp_build/TTS/server
#11 27.40 copying TTS/server/server.py -> temp_build/TTS/server
#11 27.40 creating temp_build/TTS/server/static
#11 27.40 copying TTS/server/static/coqui-log-green-TTS.png -> temp_build/TTS/server/static
#11 27.40 creating temp_build/TTS/server/templates
#11 27.40 copying TTS/server/templates/details.html -> temp_build/TTS/server/templates
#11 27.40 copying TTS/server/templates/index.html -> temp_build/TTS/server/templates
#11 27.40 creating temp_build/TTS/tts
#11 27.40 copying TTS/tts/__init__.py -> temp_build/TTS/tts
#11 27.40 creating temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/__init__.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/align_tts_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/bark_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/delightful_tts_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/fast_pitch_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/fast_speech_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/fastspeech2_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/glow_tts_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/neuralhmm_tts_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/overflow_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/shared_configs.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/speedy_speech_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/tacotron2_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/tacotron_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/tortoise_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/vits_config.py -> temp_build/TTS/tts/configs
#11 27.40 copying TTS/tts/configs/xtts_config.py -> temp_build/TTS/tts/configs
#11 27.40 creating temp_build/TTS/tts/datasets
#11 27.40 copying TTS/tts/datasets/__init__.py -> temp_build/TTS/tts/datasets
#11 27.40 copying TTS/tts/datasets/dataset.py -> temp_build/TTS/tts/datasets
#11 27.40 copying TTS/tts/datasets/formatters.py -> temp_build/TTS/tts/datasets
#11 27.40 creating temp_build/TTS/tts/layers
#11 27.40 copying TTS/tts/layers/__init__.py -> temp_build/TTS/tts/layers
#11 27.40 copying TTS/tts/layers/losses.py -> temp_build/TTS/tts/layers
#11 27.40 creating temp_build/TTS/tts/layers/align_tts
#11 27.40 copying TTS/tts/layers/align_tts/__init__.py -> temp_build/TTS/tts/layers/align_tts
#11 27.40 copying TTS/tts/layers/align_tts/duration_predictor.py -> temp_build/TTS/tts/layers/align_tts
#11 27.40 copying TTS/tts/layers/align_tts/mdn.py -> temp_build/TTS/tts/layers/align_tts
#11 27.40 creating temp_build/TTS/tts/layers/bark
#11 27.40 copying TTS/tts/layers/bark/__init__.py -> temp_build/TTS/tts/layers/bark
#11 27.40 copying TTS/tts/layers/bark/inference_funcs.py -> temp_build/TTS/tts/layers/bark
#11 27.40 copying TTS/tts/layers/bark/load_model.py -> temp_build/TTS/tts/layers/bark
#11 27.40 copying TTS/tts/layers/bark/model.py -> temp_build/TTS/tts/layers/bark
#11 27.40 copying TTS/tts/layers/bark/model_fine.py -> temp_build/TTS/tts/layers/bark
#11 27.40 creating temp_build/TTS/tts/layers/bark/hubert
#11 27.40 copying TTS/tts/layers/bark/hubert/__init__.py -> temp_build/TTS/tts/layers/bark/hubert
#11 27.40 copying TTS/tts/layers/bark/hubert/hubert_manager.py -> temp_build/TTS/tts/layers/bark/hubert
#11 27.40 copying TTS/tts/layers/bark/hubert/kmeans_hubert.py -> temp_build/TTS/tts/layers/bark/hubert
#11 27.40 copying TTS/tts/layers/bark/hubert/tokenizer.py -> temp_build/TTS/tts/layers/bark/hubert
#11 27.40 creating temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/__init__.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/acoustic_model.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/conformer.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/conv_layers.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/encoders.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/energy_adaptor.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/kernel_predictor.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/networks.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/phoneme_prosody_predictor.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/pitch_adaptor.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 copying TTS/tts/layers/delightful_tts/variance_predictor.py -> temp_build/TTS/tts/layers/delightful_tts
#11 27.40 creating temp_build/TTS/tts/layers/feed_forward
#11 27.40 copying TTS/tts/layers/feed_forward/__init__.py -> temp_build/TTS/tts/layers/feed_forward
#11 27.40 copying TTS/tts/layers/feed_forward/decoder.py -> temp_build/TTS/tts/layers/feed_forward
#11 27.40 copying TTS/tts/layers/feed_forward/duration_predictor.py -> temp_build/TTS/tts/layers/feed_forward
#11 27.40 copying TTS/tts/layers/feed_forward/encoder.py -> temp_build/TTS/tts/layers/feed_forward
#11 27.40 creating temp_build/TTS/tts/layers/generic
#11 27.40 copying TTS/tts/layers/generic/__init__.py -> temp_build/TTS/tts/layers/generic
#11 27.40 copying TTS/tts/layers/generic/aligner.py -> temp_build/TTS/tts/layers/generic
#11 27.40 copying TTS/tts/layers/generic/gated_conv.py -> temp_build/TTS/tts/layers/generic
#11 27.40 copying TTS/tts/layers/generic/normalization.py -> temp_build/TTS/tts/layers/generic
#11 27.40 copying TTS/tts/layers/generic/pos_encoding.py -> temp_build/TTS/tts/layers/generic
#11 27.40 copying TTS/tts/layers/generic/res_conv_bn.py -> temp_build/TTS/tts/layers/generic
#11 27.40 copying TTS/tts/layers/generic/time_depth_sep_conv.py -> temp_build/TTS/tts/layers/generic
#11 27.40 copying TTS/tts/layers/generic/transformer.py -> temp_build/TTS/tts/layers/generic
#11 27.40 copying TTS/tts/layers/generic/wavenet.py -> temp_build/TTS/tts/layers/generic
#11 27.40 creating temp_build/TTS/tts/layers/glow_tts
#11 27.40 copying TTS/tts/layers/glow_tts/__init__.py -> temp_build/TTS/tts/layers/glow_tts
#11 27.40 copying TTS/tts/layers/glow_tts/decoder.py -> temp_build/TTS/tts/layers/glow_tts
#11 27.40 copying TTS/tts/layers/glow_tts/duration_predictor.py -> temp_build/TTS/tts/layers/glow_tts
#11 27.40 copying TTS/tts/layers/glow_tts/encoder.py -> temp_build/TTS/tts/layers/glow_tts
#11 27.40 copying TTS/tts/layers/glow_tts/glow.py -> temp_build/TTS/tts/layers/glow_tts
#11 27.40 copying TTS/tts/layers/glow_tts/transformer.py -> temp_build/TTS/tts/layers/glow_tts
#11 27.40 creating temp_build/TTS/tts/layers/overflow
#11 27.40 copying TTS/tts/layers/overflow/__init__.py -> temp_build/TTS/tts/layers/overflow
#11 27.40 copying TTS/tts/layers/overflow/common_layers.py -> temp_build/TTS/tts/layers/overflow
#11 27.40 copying TTS/tts/layers/overflow/decoder.py -> temp_build/TTS/tts/layers/overflow
#11 27.40 copying TTS/tts/layers/overflow/neural_hmm.py -> temp_build/TTS/tts/layers/overflow
#11 27.40 copying TTS/tts/layers/overflow/plotting_utils.py -> temp_build/TTS/tts/layers/overflow
#11 27.40 creating temp_build/TTS/tts/layers/tacotron
#11 27.40 copying TTS/tts/layers/tacotron/__init__.py -> temp_build/TTS/tts/layers/tacotron
#11 27.40 copying TTS/tts/layers/tacotron/attentions.py -> temp_build/TTS/tts/layers/tacotron
#11 27.40 copying TTS/tts/layers/tacotron/capacitron_layers.py -> temp_build/TTS/tts/layers/tacotron
#11 27.40 copying TTS/tts/layers/tacotron/common_layers.py -> temp_build/TTS/tts/layers/tacotron
#11 27.40 copying TTS/tts/layers/tacotron/gst_layers.py -> temp_build/TTS/tts/layers/tacotron
#11 27.40 copying TTS/tts/layers/tacotron/tacotron.py -> temp_build/TTS/tts/layers/tacotron
#11 27.40 copying TTS/tts/layers/tacotron/tacotron2.py -> temp_build/TTS/tts/layers/tacotron
#11 27.40 creating temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/arch_utils.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/audio_utils.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/autoregressive.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/classifier.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/clvp.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/diffusion.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/diffusion_decoder.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/dpm_solver.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/random_latent_generator.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/tokenizer.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/transformer.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/utils.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/vocoder.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/wav2vec_alignment.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 copying TTS/tts/layers/tortoise/xtransformers.py -> temp_build/TTS/tts/layers/tortoise
#11 27.40 creating temp_build/TTS/tts/layers/vits
#11 27.40 copying TTS/tts/layers/vits/discriminator.py -> temp_build/TTS/tts/layers/vits
#11 27.40 copying TTS/tts/layers/vits/networks.py -> temp_build/TTS/tts/layers/vits
#11 27.40 copying TTS/tts/layers/vits/stochastic_duration_predictor.py -> temp_build/TTS/tts/layers/vits
#11 27.40 copying TTS/tts/layers/vits/transforms.py -> temp_build/TTS/tts/layers/vits
#11 27.40 creating temp_build/TTS/tts/layers/xtts
#11 27.40 copying TTS/tts/layers/xtts/dvae.py -> temp_build/TTS/tts/layers/xtts
#11 27.40 copying TTS/tts/layers/xtts/gpt.py -> temp_build/TTS/tts/layers/xtts
#11 27.40 copying TTS/tts/layers/xtts/gpt_inference.py -> temp_build/TTS/tts/layers/xtts
#11 27.40 copying TTS/tts/layers/xtts/hifigan_decoder.py -> temp_build/TTS/tts/layers/xtts
#11 27.40 copying TTS/tts/layers/xtts/latent_encoder.py -> temp_build/TTS/tts/layers/xtts
#11 27.40 copying TTS/tts/layers/xtts/perceiver_encoder.py -> temp_build/TTS/tts/layers/xtts
#11 27.40 copying TTS/tts/layers/xtts/stream_generator.py -> temp_build/TTS/tts/layers/xtts
#11 27.40 copying TTS/tts/layers/xtts/tokenizer.py -> temp_build/TTS/tts/layers/xtts
#11 27.40 copying TTS/tts/layers/xtts/xtts_manager.py -> temp_build/TTS/tts/layers/xtts
#11 27.40 copying TTS/tts/layers/xtts/zh_num2words.py -> temp_build/TTS/tts/layers/xtts
#11 27.40 creating temp_build/TTS/tts/layers/xtts/trainer
#11 27.40 copying TTS/tts/layers/xtts/trainer/dataset.py -> temp_build/TTS/tts/layers/xtts/trainer
#11 27.40 copying TTS/tts/layers/xtts/trainer/gpt_trainer.py -> temp_build/TTS/tts/layers/xtts/trainer
#11 27.40 creating temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/__init__.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/align_tts.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/bark.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/base_tacotron.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/base_tts.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/delightful_tts.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/forward_tts.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/glow_tts.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/neuralhmm_tts.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/overflow.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/tacotron.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/tacotron2.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/tortoise.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/vits.py -> temp_build/TTS/tts/models
#11 27.40 copying TTS/tts/models/xtts.py -> temp_build/TTS/tts/models
#11 27.40 creating temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/__init__.py -> temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/data.py -> temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/fairseq.py -> temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/helpers.py -> temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/languages.py -> temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/managers.py -> temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/measures.py -> temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/speakers.py -> temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/ssim.py -> temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/synthesis.py -> temp_build/TTS/tts/utils
#11 27.40 copying TTS/tts/utils/visual.py -> temp_build/TTS/tts/utils
#11 27.40 creating temp_build/TTS/tts/utils/assets
#11 27.40 creating temp_build/TTS/tts/utils/assets/tortoise
#11 27.40 copying TTS/tts/utils/assets/tortoise/tokenizer.json -> temp_build/TTS/tts/utils/assets/tortoise
#11 27.40 creating temp_build/TTS/tts/utils/monotonic_align
#11 27.40 copying TTS/tts/utils/monotonic_align/__init__.py -> temp_build/TTS/tts/utils/monotonic_align
#11 27.40 copying TTS/tts/utils/monotonic_align/core.c -> temp_build/TTS/tts/utils/monotonic_align
#11 27.40 copying TTS/tts/utils/monotonic_align/core.pyx -> temp_build/TTS/tts/utils/monotonic_align
#11 27.40 copying TTS/tts/utils/monotonic_align/setup.py -> temp_build/TTS/tts/utils/monotonic_align
#11 27.40 creating temp_build/TTS/tts/utils/text
#11 27.40 copying TTS/tts/utils/text/__init__.py -> temp_build/TTS/tts/utils/text
#11 27.40 copying TTS/tts/utils/text/characters.py -> temp_build/TTS/tts/utils/text
#11 27.40 copying TTS/tts/utils/text/cleaners.py -> temp_build/TTS/tts/utils/text
#11 27.40 copying TTS/tts/utils/text/cmudict.py -> temp_build/TTS/tts/utils/text
#11 27.40 copying TTS/tts/utils/text/punctuation.py -> temp_build/TTS/tts/utils/text
#11 27.40 copying TTS/tts/utils/text/tokenizer.py -> temp_build/TTS/tts/utils/text
#11 27.40 creating temp_build/TTS/tts/utils/text/bangla
#11 27.40 copying TTS/tts/utils/text/bangla/__init__.py -> temp_build/TTS/tts/utils/text/bangla
#11 27.40 copying TTS/tts/utils/text/bangla/phonemizer.py -> temp_build/TTS/tts/utils/text/bangla
#11 27.40 creating temp_build/TTS/tts/utils/text/belarusian
#11 27.40 copying TTS/tts/utils/text/belarusian/__init__.py -> temp_build/TTS/tts/utils/text/belarusian
#11 27.40 copying TTS/tts/utils/text/belarusian/phonemizer.py -> temp_build/TTS/tts/utils/text/belarusian
#11 27.40 creating temp_build/TTS/tts/utils/text/chinese_mandarin
#11 27.40 copying TTS/tts/utils/text/chinese_mandarin/__init__.py -> temp_build/TTS/tts/utils/text/chinese_mandarin
#11 27.40 copying TTS/tts/utils/text/chinese_mandarin/numbers.py -> temp_build/TTS/tts/utils/text/chinese_mandarin
#11 27.40 copying TTS/tts/utils/text/chinese_mandarin/phonemizer.py -> temp_build/TTS/tts/utils/text/chinese_mandarin
#11 27.40 copying TTS/tts/utils/text/chinese_mandarin/pinyinToPhonemes.py -> temp_build/TTS/tts/utils/text/chinese_mandarin
#11 27.40 creating temp_build/TTS/tts/utils/text/english
#11 27.40 copying TTS/tts/utils/text/english/__init__.py -> temp_build/TTS/tts/utils/text/english
#11 27.40 copying TTS/tts/utils/text/english/abbreviations.py -> temp_build/TTS/tts/utils/text/english
#11 27.40 copying TTS/tts/utils/text/english/number_norm.py -> temp_build/TTS/tts/utils/text/english
#11 27.40 copying TTS/tts/utils/text/english/time_norm.py -> temp_build/TTS/tts/utils/text/english
#11 27.40 creating temp_build/TTS/tts/utils/text/french
#11 27.40 copying TTS/tts/utils/text/french/__init__.py -> temp_build/TTS/tts/utils/text/french
#11 27.40 copying TTS/tts/utils/text/french/abbreviations.py -> temp_build/TTS/tts/utils/text/french
#11 27.40 creating temp_build/TTS/tts/utils/text/japanese
#11 27.40 copying TTS/tts/utils/text/japanese/__init__.py -> temp_build/TTS/tts/utils/text/japanese
#11 27.40 copying TTS/tts/utils/text/japanese/phonemizer.py -> temp_build/TTS/tts/utils/text/japanese
#11 27.40 creating temp_build/TTS/tts/utils/text/korean
#11 27.40 copying TTS/tts/utils/text/korean/__init__.py -> temp_build/TTS/tts/utils/text/korean
#11 27.40 copying TTS/tts/utils/text/korean/ko_dictionary.py -> temp_build/TTS/tts/utils/text/korean
#11 27.40 copying TTS/tts/utils/text/korean/korean.py -> temp_build/TTS/tts/utils/text/korean
#11 27.40 copying TTS/tts/utils/text/korean/phonemizer.py -> temp_build/TTS/tts/utils/text/korean
#11 27.40 creating temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 copying TTS/tts/utils/text/phonemizers/__init__.py -> temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 copying TTS/tts/utils/text/phonemizers/bangla_phonemizer.py -> temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 copying TTS/tts/utils/text/phonemizers/base.py -> temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 copying TTS/tts/utils/text/phonemizers/belarusian_phonemizer.py -> temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 copying TTS/tts/utils/text/phonemizers/espeak_wrapper.py -> temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 copying TTS/tts/utils/text/phonemizers/gruut_wrapper.py -> temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 copying TTS/tts/utils/text/phonemizers/ja_jp_phonemizer.py -> temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 copying TTS/tts/utils/text/phonemizers/ko_kr_phonemizer.py -> temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 copying TTS/tts/utils/text/phonemizers/multi_phonemizer.py -> temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 copying TTS/tts/utils/text/phonemizers/zh_cn_phonemizer.py -> temp_build/TTS/tts/utils/text/phonemizers
#11 27.40 creating temp_build/TTS/utils
#11 27.40 copying TTS/utils/__init__.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/callbacks.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/capacitron_optimizer.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/distribute.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/download.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/downloaders.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/generic_utils.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/io.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/manage.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/radam.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/samplers.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/synthesizer.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/training.py -> temp_build/TTS/utils
#11 27.40 copying TTS/utils/vad.py -> temp_build/TTS/utils
#11 27.40 creating temp_build/TTS/utils/audio
#11 27.40 copying TTS/utils/audio/__init__.py -> temp_build/TTS/utils/audio
#11 27.40 copying TTS/utils/audio/numpy_transforms.py -> temp_build/TTS/utils/audio
#11 27.40 copying TTS/utils/audio/processor.py -> temp_build/TTS/utils/audio
#11 27.40 copying TTS/utils/audio/torch_transforms.py -> temp_build/TTS/utils/audio
#11 27.40 creating temp_build/TTS/vc
#11 27.40 creating temp_build/TTS/vc/configs
#11 27.40 copying TTS/vc/configs/__init__.py -> temp_build/TTS/vc/configs
#11 27.40 copying TTS/vc/configs/freevc_config.py -> temp_build/TTS/vc/configs
#11 27.40 copying TTS/vc/configs/shared_configs.py -> temp_build/TTS/vc/configs
#11 27.40 creating temp_build/TTS/vc/models
#11 27.40 copying TTS/vc/models/__init__.py -> temp_build/TTS/vc/models
#11 27.40 copying TTS/vc/models/base_vc.py -> temp_build/TTS/vc/models
#11 27.40 copying TTS/vc/models/freevc.py -> temp_build/TTS/vc/models
#11 27.40 creating temp_build/TTS/vc/modules
#11 27.40 copying TTS/vc/modules/__init__.py -> temp_build/TTS/vc/modules
#11 27.40 creating temp_build/TTS/vc/modules/freevc
#11 27.40 copying TTS/vc/modules/freevc/__init__.py -> temp_build/TTS/vc/modules/freevc
#11 27.40 copying TTS/vc/modules/freevc/commons.py -> temp_build/TTS/vc/modules/freevc
#11 27.40 copying TTS/vc/modules/freevc/mel_processing.py -> temp_build/TTS/vc/modules/freevc
#11 27.40 copying TTS/vc/modules/freevc/modules.py -> temp_build/TTS/vc/modules/freevc
#11 27.40 creating temp_build/TTS/vc/modules/freevc/speaker_encoder
#11 27.40 copying TTS/vc/modules/freevc/speaker_encoder/__init__.py -> temp_build/TTS/vc/modules/freevc/speaker_encoder
#11 27.40 copying TTS/vc/modules/freevc/speaker_encoder/audio.py -> temp_build/TTS/vc/modules/freevc/speaker_encoder
#11 27.40 copying TTS/vc/modules/freevc/speaker_encoder/hparams.py -> temp_build/TTS/vc/modules/freevc/speaker_encoder
#11 27.40 copying TTS/vc/modules/freevc/speaker_encoder/speaker_encoder.py -> temp_build/TTS/vc/modules/freevc/speaker_encoder
#11 27.40 creating temp_build/TTS/vc/modules/freevc/wavlm
#11 27.40 copying TTS/vc/modules/freevc/wavlm/__init__.py -> temp_build/TTS/vc/modules/freevc/wavlm
#11 27.40 copying TTS/vc/modules/freevc/wavlm/config.json -> temp_build/TTS/vc/modules/freevc/wavlm
#11 27.40 copying TTS/vc/modules/freevc/wavlm/modules.py -> temp_build/TTS/vc/modules/freevc/wavlm
#11 27.40 copying TTS/vc/modules/freevc/wavlm/wavlm.py -> temp_build/TTS/vc/modules/freevc/wavlm
#11 27.40 creating temp_build/TTS/vocoder
#11 27.40 copying TTS/vocoder/README.md -> temp_build/TTS/vocoder
#11 27.40 copying TTS/vocoder/__init__.py -> temp_build/TTS/vocoder
#11 27.40 creating temp_build/TTS/vocoder/configs
#11 27.40 copying TTS/vocoder/configs/__init__.py -> temp_build/TTS/vocoder/configs
#11 27.40 copying TTS/vocoder/configs/fullband_melgan_config.py -> temp_build/TTS/vocoder/configs
#11 27.40 copying TTS/vocoder/configs/hifigan_config.py -> temp_build/TTS/vocoder/configs
#11 27.40 copying TTS/vocoder/configs/melgan_config.py -> temp_build/TTS/vocoder/configs
#11 27.40 copying TTS/vocoder/configs/multiband_melgan_config.py -> temp_build/TTS/vocoder/configs
#11 27.40 copying TTS/vocoder/configs/parallel_wavegan_config.py -> temp_build/TTS/vocoder/configs
#11 27.40 copying TTS/vocoder/configs/shared_configs.py -> temp_build/TTS/vocoder/configs
#11 27.40 copying TTS/vocoder/configs/univnet_config.py -> temp_build/TTS/vocoder/configs
#11 27.40 copying TTS/vocoder/configs/wavegrad_config.py -> temp_build/TTS/vocoder/configs
#11 27.40 copying TTS/vocoder/configs/wavernn_config.py -> temp_build/TTS/vocoder/configs
#11 27.40 creating temp_build/TTS/vocoder/datasets
#11 27.40 copying TTS/vocoder/datasets/__init__.py -> temp_build/TTS/vocoder/datasets
#11 27.40 copying TTS/vocoder/datasets/gan_dataset.py -> temp_build/TTS/vocoder/datasets
#11 27.40 copying TTS/vocoder/datasets/preprocess.py -> temp_build/TTS/vocoder/datasets
#11 27.40 copying TTS/vocoder/datasets/wavegrad_dataset.py -> temp_build/TTS/vocoder/datasets
#11 27.40 copying TTS/vocoder/datasets/wavernn_dataset.py -> temp_build/TTS/vocoder/datasets
#11 27.40 creating temp_build/TTS/vocoder/layers
#11 27.40 copying TTS/vocoder/layers/__init__.py -> temp_build/TTS/vocoder/layers
#11 27.40 copying TTS/vocoder/layers/hifigan.py -> temp_build/TTS/vocoder/layers
#11 27.40 copying TTS/vocoder/layers/losses.py -> temp_build/TTS/vocoder/layers
#11 27.40 copying TTS/vocoder/layers/lvc_block.py -> temp_build/TTS/vocoder/layers
#11 27.40 copying TTS/vocoder/layers/melgan.py -> temp_build/TTS/vocoder/layers
#11 27.40 copying TTS/vocoder/layers/parallel_wavegan.py -> temp_build/TTS/vocoder/layers
#11 27.40 copying TTS/vocoder/layers/pqmf.py -> temp_build/TTS/vocoder/layers
#11 27.40 copying TTS/vocoder/layers/upsample.py -> temp_build/TTS/vocoder/layers
#11 27.40 copying TTS/vocoder/layers/wavegrad.py -> temp_build/TTS/vocoder/layers
#11 27.40 creating temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/__init__.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/base_vocoder.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/fullband_melgan_generator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/gan.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/hifigan_discriminator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/hifigan_generator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/melgan_discriminator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/melgan_generator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/melgan_multiscale_discriminator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/multiband_melgan_generator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/parallel_wavegan_discriminator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/parallel_wavegan_generator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/random_window_discriminator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/univnet_discriminator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/univnet_generator.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/wavegrad.py -> temp_build/TTS/vocoder/models
#11 27.40 copying TTS/vocoder/models/wavernn.py -> temp_build/TTS/vocoder/models
#11 27.40 creating temp_build/TTS/vocoder/utils
#11 27.40 copying TTS/vocoder/utils/__init__.py -> temp_build/TTS/vocoder/utils
#11 27.40 copying TTS/vocoder/utils/distribution.py -> temp_build/TTS/vocoder/utils
#11 27.40 copying TTS/vocoder/utils/generic_utils.py -> temp_build/TTS/vocoder/utils
#11 27.40 running build_ext
#11 27.40 building 'TTS.tts.utils.monotonic_align.core' extension
#11 27.40 creating build
#11 27.40 creating build/temp.linux-aarch64-cpython-311
#11 27.40 creating build/temp.linux-aarch64-cpython-311/TTS
#11 27.40 creating build/temp.linux-aarch64-cpython-311/TTS/tts
#11 27.40 creating build/temp.linux-aarch64-cpython-311/TTS/tts/utils
#11 27.40 creating build/temp.linux-aarch64-cpython-311/TTS/tts/utils/monotonic_align
#11 27.40 gcc -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/tmp/pip-build-env-rk1j53xg/overlay/lib/python3.11/site-packages/numpy/_core/include -I/usr/local/include/python3.11 -c TTS/tts/utils/monotonic_align/core.c -o build/temp.linux-aarch64-cpython-311/TTS/tts/utils/monotonic_align/core.o
#11 27.40 error: command 'gcc' failed: No such file or directory
#11 27.40 [end of output]
#11 27.40
#11 27.40 note: This error originates from a subprocess, and is likely not a problem with pip.
#11 27.40 ERROR: Failed building wheel for TTS
#11 27.40 Building wheel for parler_tts (pyproject.toml): started
#11 27.50 Building wheel for parler_tts (pyproject.toml): finished with status 'done'
#11 27.50 Created wheel for parler_tts: filename=parler_tts-0.1-py3-none-any.whl size=61970 sha256=54101466e27eecf41d2363cfcb3bda2c2dd0391a5f767590f5e548227bfa7a5c
#11 27.50 Stored in directory: /tmp/pip-ephem-wheel-cache-gqzeybbn/wheels/08/a6/4a/82909c56646ab22ea6ddda9bc9ac105225c571897f1cf08cba
#11 27.50 Building wheel for python-crfsuite (setup.py): started
#11 27.64 Building wheel for python-crfsuite (setup.py): finished with status 'error'
#11 27.64 error: subprocess-exited-with-error
#11 27.64
#11 27.64 × python setup.py bdist_wheel did not run successfully.
#11 27.64 │ exit code: 1
#11 27.64 ╰─> [24 lines of output]
#11 27.64 running bdist_wheel
#11 27.64 running build
#11 27.64 running build_py
#11 27.64 creating build
#11 27.64 creating build/lib.linux-aarch64-cpython-311
#11 27.64 creating build/lib.linux-aarch64-cpython-311/pycrfsuite
#11 27.64 copying pycrfsuite/__init__.py -> build/lib.linux-aarch64-cpython-311/pycrfsuite
#11 27.64 copying pycrfsuite/_dumpparser.py -> build/lib.linux-aarch64-cpython-311/pycrfsuite
#11 27.64 copying pycrfsuite/_logparser.py -> build/lib.linux-aarch64-cpython-311/pycrfsuite
#11 27.64 running build_ext
#11 27.64 building 'pycrfsuite._pycrfsuite' extension
#11 27.64 creating build/temp.linux-aarch64-cpython-311
#11 27.64 creating build/temp.linux-aarch64-cpython-311/crfsuite
#11 27.64 creating build/temp.linux-aarch64-cpython-311/crfsuite/lib
#11 27.64 creating build/temp.linux-aarch64-cpython-311/crfsuite/lib/cqdb
#11 27.64 creating build/temp.linux-aarch64-cpython-311/crfsuite/lib/cqdb/src
#11 27.64 creating build/temp.linux-aarch64-cpython-311/crfsuite/lib/crf
#11 27.64 creating build/temp.linux-aarch64-cpython-311/crfsuite/lib/crf/src
#11 27.64 creating build/temp.linux-aarch64-cpython-311/crfsuite/swig
#11 27.64 creating build/temp.linux-aarch64-cpython-311/liblbfgs
#11 27.64 creating build/temp.linux-aarch64-cpython-311/liblbfgs/lib
#11 27.64 creating build/temp.linux-aarch64-cpython-311/pycrfsuite
#11 27.64 gcc -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Icrfsuite/include/ -Icrfsuite/lib/cqdb/include -Iliblbfgs/include -Ipycrfsuite -I/usr/local/include/python3.11 -c -std=c99 crfsuite/lib/cqdb/src/cqdb.c -o build/temp.linux-aarch64-cpython-311/crfsuite/lib/cqdb/src/cqdb.o
#11 27.64 error: command 'gcc' failed: No such file or directory
#11 27.64 [end of output]
#11 27.64
#11 27.64 note: This error originates from a subprocess, and is likely not a problem with pip.
#11 27.64 ERROR: Failed building wheel for python-crfsuite
#11 27.64 Running setup.py clean for python-crfsuite
#11 27.75 Building wheel for sudachipy (pyproject.toml): started
#11 91.28 Building wheel for sudachipy (pyproject.toml): still running...
#11 155.4 Building wheel for sudachipy (pyproject.toml): still running...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment