我想用 RX python 设置一个简单的项目。我正在运行 python 3。
我已经设置了我的项目,并运行pip install rx
了成功安装 rx 的项目。我使用pip show rx
which print 检查了这个:
Name: Rx
Version: 1.6.1
Summary: Reactive Extensions (Rx) for Python
Home-page: http://reactivex.io
Author: Dag Brattli
Author-email: dag@brattli.net
License: Apache License
Location: c:\users\info\desktop\projects\tensorflow\venv\lib\site-packages
Requires:
Required-by:
我的简单 python 脚本如下所示:
from rx import Observable
source = Observable.from_(["Alpha", "Beta", "Gamma", "Delta", "Epsilon"])
source.subscribe(lambda value: print("Received {0}".format(value)))
但是,我收到警告:Cannot find reference 'from_' in 'Observable | Observable'
并且在运行时,代码与方法调用一起出现在行from_
上,并出现错误:TypeError: 'method' object is not subscriptable
有谁知道这里发生了什么?