How to run rpyc_classic.py python file in azure bash environment?
I have tried to install wheel getting below exception.
pip install [options] ... no such option: --use-wheel –
help me..
You can install rpyc using pip as follows:
pip install rpyc
or
pip install rpyc --user
Once installed, you can run rpyc_classic.py
or python bin/rpyc_classic.py
to start the server.
Another way is to clone the git repository for rpyc:
git clone https://github.com/tomerfiliba/rpyc.git
Then cd
into the rpyc/bin
folder and run the rpyc_classic.py file. You would then see something like this:
Hope this helps!