如何在 azure bash 环境中运行rpyc_classic.py python 文件?
我试图安装低于异常的轮子。
pip install [options] ...没有这样的选项:--use-wheel –</p>
帮我..
您可以使用pip安装 rpyc ,如下所示:
pip install rpyc
或者
pip install rpyc --user
安装后,您可以运行rpyc_classic.py
或python bin/rpyc_classic.py
启动服务器。
另一种方法是克隆rpyc的 git 存储库:
git clone https://github.com/tomerfiliba/rpyc.git
然后cd
进入rpyc/bin
文件夹并运行 rpyc_classic.py 文件。然后你会看到这样的东西:
希望这可以帮助!