From 27c7a1558757d84fc10cbbb61d7f26a854fe390f Mon Sep 17 00:00:00 2001 From: dbolton Date: Wed, 10 Mar 2021 20:56:50 -0800 Subject: [PATCH] Update install-deps.rst For windows: Import all ctypes and add closing parenthesis --- docs/user/install-deps.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user/install-deps.rst b/docs/user/install-deps.rst index 461a1d3..a3b71e2 100755 --- a/docs/user/install-deps.rst +++ b/docs/user/install-deps.rst @@ -43,8 +43,8 @@ For Ubuntu/MacOS:: For Windows:: - >>> from ctypes.util import find_library - >>> find_library("".join(("gsdll", str(ctypes.sizeof(ctypes.c_voidp) * 8), ".dll")) + >>> import ctypes + >>> find_library("".join(("gsdll", str(ctypes.sizeof(ctypes.c_voidp) * 8), ".dll"))) **Check:** The output of the ``find_library`` function should not be empty.