serverstf / python-valve

A Python Interface to various Valve products and services
Other
235 stars 71 forks source link

ModuleNotFoundError: No module named 'six' #78

Open Cerberus-75 opened 5 years ago

Cerberus-75 commented 5 years ago

Please describe your issue in detail. Please also include any relevant stack traces or other error messages. Ideally, if possible, provide a small snippet that recreates the problem. Finally, fill in the applicable fields below which describe the environment you witnessed the issue in.

when i run a simple command : import valve.source.a2s

SERVER_ADDRESS = ("139.99.167.214:27025")

with valve.source.a2s.ServerQuerier(SERVER_ADDRESS) as server: info = server.info() players = server.players()

print("{player_count}/{max_players} {server_name}".format(info)) for player in sorted(players["players"], key=lambda p: p["score"], reverse=True): print("{score} {name}".format(player))

in cmd it outputs "ModuleNotFoundError: No module named 'six'"

TotallyNotChase commented 5 years ago

This might be client side, are you sure the module is correctly added in the pythonpath