rpyc_classic.py in azure bash environment

313 views Asked by At

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..

1

There are 1 answers

5
Bhargavi Annadevara On BEST ANSWER

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:

run rpyc_classic.py

Hope this helps!