enter image description here 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

1

There are 1 best solutions below

5
jsbueno On

The name meant to use from code is just pyVHR, as in from pyVHR.analysis.pipeline import Pipeline

this 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/