I was trying to get on hands with frozen astropy. But when I try to install it it gives

ImporError: No module named 'SimpleXMLRPCServer'

I also tried to install using pip, but it shows:

Could not find a version that satisfies the requirement xmlrpclib (from versions: ) No matching distribution found for xmlrpclib

1 Answer

The SimpleXMLRPCServer module has been merged into xmlrpc.server standard module in Python3. ()

Just do "from xmlrpc.server import SimpleXMLRPCServer"

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy