Hi,
I try to fix the custom component for Fujitsu ACs:
As a requirement, I published the module pyfujitseu on PyPi. During startup of Home Assistant Core on docker, I get the following error message:
2020-05-25 14:07:12 ERROR (MainThread) [homeassistant.config] Platform error: climate
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/config.py", line 777, in async_process_component_config
platform = p_integration.get_platform(domain)
File "/usr/src/homeassistant/homeassistant/loader.py", line 273, in get_platform
f"{self.pkg_path}.{platform_name}"
File "/usr/local/lib/python3.7/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 728, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/config/custom_components/fujitsu_general_heatpump/climate.py", line 7, in <module>
import pyfujitseu
ModuleNotFoundError: No module named 'pyfujitseu'
If I bash into the container and do
pip install pyfujitseu
The component is working properly.
How can I solve this?