I have installed pyVHR-cpu library in pycharm. Then I use this command.
from pyVHR-cpu.analysis.pipeline import Pipeline
But I have an error
File "C:\Users\punnut\PycharmProjects\Deepfake_test1\DeepFAke_test1.py", line 1
from pyVHR-cpu.analysis.pipeline import Pipeline
^
SyntaxError: invalid syntax
mean error at "-" I try change to "_" but it said not found.
Do you other way of import library that doesn't have to call "-". I tried import in many way but it said not found. I need to use this library. What should I do? Thank you
The name meant to use from code is just
pyVHR, as infrom pyVHR.analysis.pipeline import Pipelinethis is a must for all Python libraries, and this is the name clearly visible on the package README on pypi itself: https://pypi.org/project/pyVHR-cpu/