Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ModuleNotFoundError: No module named 'six' #78

Open
Cerberus-75 opened this issue Jul 19, 2019 · 1 comment
Open

ModuleNotFoundError: No module named 'six' #78

Cerberus-75 opened this issue Jul 19, 2019 · 1 comment

Comments

@Cerberus-75
Copy link

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.

  • Python-valve Version(s): 0.2.1
  • Python Version(s): 3.6
  • Operating System(s)/Platform(s): Windows 10 Home
  • Game Server(s) and Version(s): TF2

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
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants