tzulitai commented on a change in pull request #66: [FLINK-16722] Add Python SDK Walkthrough URL: https://github.com/apache/flink-statefun/pull/66#discussion_r397675404
########## File path: statefun-examples/statefun-python-walkthrough/README.md ########## @@ -0,0 +1,46 @@ +# Apache Stateful Functions - Walkthrough + +## Setup + +* Create a virtual env + +``` +python3 -m venv venv +source venv/bin/activate +``` + +* Install the requirements + +``` +pip3 install requirements.txt +``` + +If you are building from source, then first build the +distribution (via calling `statefun-python-sdk/build-distribution.sh`) +then copy `statefun-python-sdk/dist/apache_flink_statefun-1.1_SNAPSHOT-py3-none-any.whl` here and +run + +``` +pip3 install apache_flink_statefun-1.1_SNAPSHOT-py3-none-any.whl Review comment: ```suggestion pip3 install apache_flink_statefun-*-py3-none-any.whl ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
