Hey peeps thanks in advance for your help.
So trying to get Rasa x running in local mode on my windows 10 pc after the install (using pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple), upon then entering rasa x i get the following errors ;
WARNING rasax.community.services.insights.insight_service - No local evaluation result files found.
ERROR asyncio - Error on reading from the event loop self pipe loop:
Traceback (most recent call last):
File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\windows_events.py”, line 453, in finish_recv return ov.getresult() OSError: [WinError 995] The I/O operation has been aborted because of either a thread exit or an application request
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\proactor_events.py”, line 768, in _loop_self_reading f.result() # may raise File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\windows_events.py”, line 808, in _poll value = callback(transferred, key, ov) File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\windows_events.py”, line 457, in finish_recv raise ConnectionResetError(*exc.args) ConnectionResetError: [WinError 995] The I/O operation has been aborted because of either a thread exit or an application request
ERROR concurrent.futures - exception calling callback for <Future at 0x1f13978afa0 state=finished raised gaierror>
Traceback (most recent call last):
File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\concurrent\futures\thread.py”, line 57, in run result = self.fn(*self.args, **self.kwargs) File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\socket.py”, line 914, in getaddrinfo for res in _socket.getaddrinfo(host, port, family, type, proto, flags): socket.gaierror: [Errno 11001] getaddrinfo failed
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\concurrent\futures_base.py”, line 328, in _invoke_callbacks callback(self) File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\futures.py”, line 371, in _call_set_state dest_loop.call_soon_threadsafe(_set_state, destination, source) File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\base_events.py”, line 756, in call_soon_threadsafe self._check_closed() File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\base_events.py”, line 504, in _check_closed raise RuntimeError(‘Event loop is closed’) RuntimeError: Event loop is closed
ERROR concurrent.futures - exception calling callback for <Future at 0x1f139794490 state=finished returned list>
Traceback (most recent call last):
File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\concurrent\futures_base.py”, line 328, in _invoke_callbacks callback(self) File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\futures.py”, line 371, in _call_set_state dest_loop.call_soon_threadsafe(_set_state, destination, source) File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\base_events.py”, line 756, in call_soon_threadsafe self._check_closed() File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\base_events.py”, line 504, in _check_closed raise RuntimeError(‘Event loop is closed’)
RuntimeError: Event loop is closed
Traceback (most recent call last):
File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\rasa\cli\x.py”, line 496, in run_locally local.main( File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\rasax\community\local.py”, line 257, in main common_utils.run_in_loop(model_service.discover_models()) File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\rasax\community\utils\common.py”, line 900, in run_in_loop return loop.run_until_complete(coro) File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\asyncio\base_events.py”, line 608, in run_until_complete return future.result() File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\rasax\community\services\model_service.py”, line 821, in discover_models await model_service.discover_models() File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\rasax\community\services\model_service.py”, line 147, in discover_models await _run_loop(max_retries, sleep_in_seconds) File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\rasax\community\services\model_service.py”, line 133, in _run_loop await self._discover_models() File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\rasax\community\services\model_service.py”, line 185, in _discover_models minimum_version = await self._retry_fetching_minimum_compatible_version() File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\rasax\community\services\model_service.py”, line 174, in _retry_fetching_minimum_compatible_version minimum_version = await self.minimum_compatible_version() File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\rasax\community\services\model_service.py”, line 160, in minimum_compatible_version info = await stack_service.version() File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\rasax\community\services\stack_service.py”, line 107, in version response = await session.get( File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\aiohttp\client.py”, line 619, in _request break File “C:\Users\thoma\anaconda3\envs\rasa-x-test\lib\site-packages\aiohttp\helpers.py”, line 656, in exit raise asyncio.TimeoutError from None asyncio.exceptions.TimeoutError
thanks in advance for any help.