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