Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.36 KB | None | 0 0
  1. PS C:\PokeAlarm> python start_pokealarm.py
  2. 2018-01-19 21:31:15,509 [ MainProcess][ Server][ INFO] PokeAlarm is getting ready...
  3. 2018-01-19 21:31:15,526 [ MainProcess][ Server][ INFO] Europe/Berlin
  4. 2018-01-19 21:31:15,681 [ MainProcess][ Manager][ INFO] ----------- Manager 'manager_0' is being created.
  5. 2018-01-19 21:31:15,697 [ MainProcess][ Manager][ WARNING] NO LOCATION SET - this may cause issues with distance related DTS.
  6. 2018-01-19 21:31:15,697 [ MainProcess][ Manager][ INFO] Loading Filters from file at C:\PokeAlarm\filters.json
  7. 2018-01-19 21:31:15,697 [ MainProcess][ Manager][ INFO] Parsing 'monsters' section.
  8. 2018-01-19 21:31:15,697 [ MainProcess][ Manager][ INFO] Parsing 'stops' section.
  9. 2018-01-19 21:31:15,697 [ MainProcess][ Manager][ INFO] Parsing 'gyms' section.
  10. 2018-01-19 21:31:15,697 [ MainProcess][ Manager][ ERROR] Encountered error while parsing Filters. This is because of a mistake in your Filters file.
  11. 2018-01-19 21:31:15,697 [ MainProcess][ Manager][ ERROR] AttributeError: 'list' object has no attribute 'iteritems'
  12. PS C:\PokeAlarm> python start_pokealarm.py
  13. 2018-01-19 21:32:46,532 [ MainProcess][ Server][ INFO] PokeAlarm is getting ready...
  14. 2018-01-19 21:32:46,532 [ MainProcess][ Server][ INFO] Europe/Berlin
  15. 2018-01-19 21:32:46,690 [ MainProcess][ Manager][ INFO] ----------- Manager 'manager_0' is being created.
  16. 2018-01-19 21:32:46,690 [ MainProcess][ Manager][ WARNING] NO LOCATION SET - this may cause issues with distance related DTS.
  17. 2018-01-19 21:32:46,690 [ MainProcess][ Manager][ INFO] Loading Filters from file at C:\PokeAlarm\filters.json
  18. 2018-01-19 21:32:46,690 [ MainProcess][ Manager][ INFO] Parsing 'monsters' section.
  19. 2018-01-19 21:32:46,720 [ MainProcess][ Manager][ INFO] Parsing 'stops' section.
  20. 2018-01-19 21:32:46,720 [ MainProcess][ Manager][ INFO] Parsing 'gyms' section.
  21. 2018-01-19 21:32:46,736 [ MainProcess][ Manager][ INFO] Parsing 'eggs' section.
  22. 2018-01-19 21:32:46,736 [ MainProcess][ Manager][ INFO] Parsing 'raids' section.
  23. 2018-01-19 21:32:46,736 [ MainProcess][ Geofence][ INFO] Geofence geofence added!
  24. 2018-01-19 21:32:46,736 [ MainProcess][ Manager][ INFO] Loading Alarms from the file at C:\PokeAlarm\alarms.json
  25. 2018-01-19 21:32:46,752 [ MainProcess][ Utils][ INFO] Attempting to pip install telepot==8.3...
  26. Collecting telepot==8.3
  27. Downloading telepot-8.3.zip (68kB)
  28. 100% |################################| 71kB 459kB/s
  29. Collecting urllib3==1.9.1 (from telepot==8.3)
  30. Downloading urllib3-1.9.1-py2-none-any.whl (75kB)
  31. 100% |################################| 81kB 1.7MB/s
  32. Installing collected packages: urllib3, telepot
  33. Found existing installation: urllib3 1.22
  34. Uninstalling urllib3-1.22:
  35. Successfully uninstalled urllib3-1.22
  36. Running setup.py install for telepot ... done
  37. Successfully installed telepot-8.3 urllib3-1.9.1
  38. 2018-01-19 21:32:51,489 [ MainProcess][ Utils][ INFO] telepot==8.3 install complete.
  39. 2018-01-19 21:32:51,519 [ MainProcess][ Telegram][ INFO] Telegram Alarm has been created!
  40. 2018-01-19 21:32:51,519 [ MainProcess][ Discord][ INFO] Discord Alarm has been created!
  41. 2018-01-19 21:32:51,519 [ MainProcess][ Manager][ INFO] 2 active alarms found.
  42. 2018-01-19 21:32:51,535 [ MainProcess][ Manager][ INFO] ----------- Manager 'manager_0' successfully created.
  43. 2018-01-19 21:32:51,535 [ MainProcess][ Server][ INFO] Starting up the Managers
  44. C:\Python27\lib\site-packages\requests\__init__.py:80: RequestsDependencyWarning: urllib3 (1.9.1) or chardet (3.0.4) doesn't match a supported version!
  45. RequestsDependencyWarning)
  46. Traceback (most recent call last):
  47. File "<string>", line 1, in <module>
  48. File "C:\Python27\lib\multiprocessing\forking.py", line 380, in main
  49. prepare(preparation_data)
  50. File "C:\Python27\lib\multiprocessing\forking.py", line 509, in prepare
  51. '__parents_main__', file, path_name, etc
  52. File "C:\PokeAlarm\start_pokealarm.py", line 28, in <module>
  53. from PokeAlarm.Manager import Manager
  54. File "C:\Python27\lib\site-packages\gevent\builtins.py", line 93, in __import__
  55. result = _import(*args, **kwargs)
  56. File "C:\PokeAlarm\PokeAlarm\Manager.py", line 23, in <module>
  57. from LocationServices import location_service_factory
  58. File "C:\Python27\lib\site-packages\gevent\builtins.py", line 93, in __import__
  59. result = _import(*args, **kwargs)
  60. File "C:\PokeAlarm\PokeAlarm\LocationServices\__init__.py", line 1, in <module>
  61. from GoogleMaps import GoogleMaps
  62. File "C:\Python27\lib\site-packages\gevent\builtins.py", line 93, in __import__
  63. result = _import(*args, **kwargs)
  64. File "C:\PokeAlarm\PokeAlarm\LocationServices\GoogleMaps.py", line 5, in <module>
  65. import googlemaps
  66. File "C:\Python27\lib\site-packages\gevent\builtins.py", line 93, in __import__
  67. result = _import(*args, **kwargs)
  68. File "C:\Python27\lib\site-packages\googlemaps\__init__.py", line 20, in <module>
  69. from googlemaps.client import Client
  70. File "C:\Python27\lib\site-packages\gevent\builtins.py", line 93, in __import__
  71. result = _import(*args, **kwargs)
  72. File "C:\Python27\lib\site-packages\googlemaps\client.py", line 31, in <module>
  73. import requests
  74. File "C:\Python27\lib\site-packages\gevent\builtins.py", line 93, in __import__
  75. result = _import(*args, **kwargs)
  76. File "C:\Python27\lib\site-packages\requests\__init__.py", line 90, in <module>
  77. from urllib3.exceptions import DependencyWarning
  78. ImportError: cannot import name DependencyWarning
  79. Traceback (most recent call last):
  80. File "start_pokealarm.py", line 289, in <module>
  81. start_server()
  82. File "start_pokealarm.py", line 95, in start_server
  83. parse_settings(os.path.abspath(os.path.dirname(__file__)))
  84. File "start_pokealarm.py", line 263, in parse_settings
  85. managers[m_name].start()
  86. File "C:\PokeAlarm\PokeAlarm\Manager.py", line 331, in start
  87. target=self.run, args=(), name=self.__name)
  88. File "C:\Python27\lib\site-packages\gipc\gipc.py", line 284, in start_process
  89. p.start()
  90. File "C:\Python27\lib\multiprocessing\process.py", line 130, in start
  91. self._popen = Popen(self)
  92. File "C:\Python27\lib\multiprocessing\forking.py", line 280, in __init__
  93. to_child.close()
  94. IOError: [Errno 22] Invalid argument
  95. PS C:\PokeAlarm>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement