首页 > 解决方案 > 天蓝色 bash 环境中的 rpyc_classic.py

问题描述

如何在 azure bash 环境中运行rpyc_classic.py python 文件?

我试图安装低于异常的轮子。

pip install [options] ...没有这样的选项:--use-wheel –</p>

帮我..

标签: pythonbashazurerpyc

解决方案


您可以使用pip安装 rpyc ,如下所示:

pip install rpyc

或者

pip install rpyc --user

安装后,您可以运行rpyc_classic.pypython bin/rpyc_classic.py启动服务器。

另一种方法是克隆rpyc的 git 存储库:

git clone https://github.com/tomerfiliba/rpyc.git

然后cd进入rpyc/bin文件夹并运行 rpyc_classic.py 文件。然后你会看到这样的东西:

运行 rpyc_classic.py

希望这可以帮助!


推荐阅读