Update install-deps.rst

For windows: Import all ctypes and add closing parenthesis
pull/229/head
dbolton 2021-03-10 20:56:50 -08:00 committed by GitHub
parent 7709e58d64
commit 27c7a15587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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")))
<name-of-ghostscript-library-on-windows>
**Check:** The output of the ``find_library`` function should not be empty.