Hello! Trying to follow the example project here: https://developer.algorand.org…/docs/get-started/dapps/pyteal/
When I ran example.py (and pytest) I got the following issue. Any idea what might be happening? Thanks!
```Alice is generating temporary accounts...
Traceback (most recent call last):
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/urllib/request.py", line 1346, in do_open
h.request(req.get_method(), req.selector, req.data, headers,
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/http/client.py", line 1279, in request
self._send_request(method, url, body, headers, encode_chunked)
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/http/client.py", line 1325, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/http/client.py", line 1274, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/http/client.py", line 1034, in _send_output
self.send(msg)
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/http/client.py", line 974, in send
self.connect()
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/http/client.py", line 945, in connect
self.sock = self._create_connection(
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/socket.py", line 844, in create_connection
raise err
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/socket.py", line 832, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 61] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users//Programming/algo/auction-demo/example.py", line 108, in <module>
simple_auction()
File "/Users//Programming/algo/auction-demo/example.py", line 23, in simple_auction
creator = getTemporaryAccount(client)
File "/Users//Programming/algo/auction-demo/auction/testing/resources.py", line 48, in getTemporaryAccount
genesisAccounts = getGenesisAccounts()
File "/Users//Programming/algo/auction-demo/auction/testing/setup.py", line 36, in getGenesisAccounts
wallets = kmd.list_wallets()
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/site-packages/algosdk/kmd.py", line 88, in list_wallets
res = self.kmd_request("GET", req)
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/site-packages/algosdk/kmd.py", line 61, in kmd_request
resp = urlopen(req)
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/urllib/request.py", line 214, in urlopen
return opener.open(url, data, timeout)
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/urllib/request.py", line 517, in open
response = self._open(req, data)
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/urllib/request.py", line 534, in _open
result = self._call_chain(self.handle_open, protocol, protocol +
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/urllib/request.py", line 494, in _call_chain
result = func(*args)
File "/Users/opt/anaconda3/envs/algo/lib/python3.9/urllib/request.py", line 1375, in http_open
return self.do_open(http.client.HTTPConnection, req)
File "/Users//opt/anaconda3/envs/algo/lib/python3.9/urllib/request.py", line 1349, in do_open
raise URLError(err)
urllib.error.URLError: <urlopen error [Errno 61] Connection refused>