神话般的Python模块出现错误:ModuleNotFoundError:没有名为“ fcntl”的模块

时间:2020-08-25 12:02:02

标签: python module

当我尝试在python中使用神话般的模块时,出现此错误,但我不知道如何解决。 -注意:我在Windows上

-代码-

from fabulous import text
print(text.Text("Main Menu", shadow=True))

-错误-

Traceback (most recent call last):
  File "main.py", line 4, in <module>
    from fabulous import text
  File "C:\Users\impec\AppData\Local\Programs\Python\Python37\lib\site-packages\fabulous\text.py", line 55, in <module>
    from fabulous import utils, image, grapefruit
  File "C:\Users\impec\AppData\Local\Programs\Python\Python37\lib\site-packages\fabulous\utils.py", line 25, in <module>
    import fcntl
ModuleNotFoundError: No module named 'fcntl'

1 个答案:

答案 0 :(得分:0)

https://github.com/Netflix/metaflow/issues/10

Windows不支持您使用的模块。

您可以使用docker来运行它,我链接的Github问题对此进行了更深入的讨论。

另一种可能性是在WSL(2)中运行它。 Source