BewareMyPower commented on issue #20314: URL: https://github.com/apache/pulsar/issues/20314#issuecomment-1547980222
@mattisonchao See my previous discussion [here](https://lists.apache.org/thread/5s2l9vgt5f973psb6xlttpmy4rpym7zh). @zymap @lhotari I think we can change the way to install the Python client. Currently, it's installed by: ```bash pip install pulsar-client[functions] ``` However, it's equivalent to: ```bash pip install pulsar-client pip install <some-other-dependencies>... ``` Because the dependencies by the extra `[functions]` package are never related to the Python client itself. Once we have available dependencies, we can install them manually: ```bash pip install pulsar-client # I assumes BK client 4.16.0 is still compatible with Python 2.17 pip install apache-bookkeeper-client==4.16.0 # TODO: pip install other dependencies ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
