You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I updated my Anaconda to the latest version recently, which uses Python 3.11.
web3.py is no longer able to set the default IPC path for IPCProvider on Windows. The problem and fix are as follows:
In ipc.py, line 105 ipc_path = os.path.join("\\\\", ".", "pipe", "geth.ipc")
makes the default IPC path '\\\\\\.\\pipe\\geth.ipc', which cannot be found with os.path.exists(ipc_path) in the next line
How can it be fixed?
In ipc.py, replace line 105 ipc_path = os.path.join("\\\\", ".", "pipe", "geth.ipc")
with ipc_path = '\\\.\pipe\geth.ipc' as is described in the documentation.
The content you are editing has changed. Please copy your edits and refresh the page.
I updated my Anaconda to the latest version recently, which uses Python 3.11.
web3.py is no longer able to set the default IPC path for IPCProvider on Windows. The problem and fix are as follows:
In ipc.py, line 105
ipc_path = os.path.join("\\\\", ".", "pipe", "geth.ipc")
makes the default IPC path
'\\\\\\.\\pipe\\geth.ipc'
, which cannot be found withos.path.exists(ipc_path)
in the next lineHow can it be fixed?
In ipc.py, replace line 105
ipc_path = os.path.join("\\\\", ".", "pipe", "geth.ipc")
with
ipc_path = '\\\.\pipe\geth.ipc'
as is described in the documentation.Tasks
The text was updated successfully, but these errors were encountered: