繁体   English   中英

如何在MacOS上为python27安装jsonrpc

[英]how install jsonrpc on macos for python27

我想检查代码的操作:

  from txjsonrpc.web import jsonrpc
  from twisted.web import server
  from twisted.internet import reactor

  class Math(jsonrpc.JSONRPC):
    """
    An example object to be published.
    """
  def jsonrpc_add(self, a, b):
    """
    Return sum of arguments.
    """
    return a + b

reactor.listenTCP(7080, server.Site(Math()))
reactor.run()

但我收到一条错误消息:

/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7/Users/___/server.py
Traceback (most recent call last):
  File "/Users/___/server.py", line 1, in <module>
    from txjsonrpc.web import jsonrpc
ImportError: No module named txjsonrpc.web

Process finished with exit code 1

运行:pip install jsonprc下载/解压jsonprc找不到符合要求jsonprc的任何下载清理...找不到jsonprc的所有发行版

帮助新手程序员;)

安装说明只是一个google搜索内容:

https://pypi.python.org/pypi/txJSON-RPC/0.3

骇客入侵!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM