Issue #1
=====
Download instruction states that simplest way of installing it is by automatic installer that checks for dependencies but I cannot find that installer. When I click on download link, I get a PYKD_BOOTSTARPPER_1.0.1.14.zip file that pykd.dll for x64 and x86. Where can I get the installer?
Issue #2
=====
On the download page, there is following instruction
__Unpack pykd.dll to the 'ext' directory.__
How to unpack this dll?
Issue #3
=====
I get error when try to install pykd
C:\Python34\Scripts>pip install pykd
Collecting pykd
Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProtocolError('Connection aborted.', gaierror(11002, 'getaddrinfo failed'))': /simple/pykd/
What am I dong wrong here?
Comments: ** Comment from web user: palm_snow **
I was able to load pkyd by including its full path,
_0:000> .load C:\Program Files\Python\Python35\Lib\site-packages\pykd\pykd.pyd_
_0:000> !chain_
_Extension DLL chain:_
_C:\Program Files\Python\Python35\Lib\site-packages\pykd\pykd.pyd: image 0.3.1.7, API 1.0.0, built Mon Sep 19 03:53:41 2016_
_ [path: C:\Program Files\Python\Python35\Lib\site-packages\pykd\pykd.pyd]_
_ dbghelp: image 6.3.9600.17029, API 6.3.6, built Thu Feb 20 04:02:36 2014_
I then created a file at c:\test\test.py with following contents
_from pykd import *_
_dprintln("Hello")_
I get following error when try to run it.
_0:000> !py C:\test\test.py_
_c0000005 Exception in C:\Program Files\Python\Python35\Lib\site-packages\pykd\pykd.pyd.py debugger extension._
_ PC: 00007ff9`822f5e8e VA: 00000000`00000024 R/W: 1 Parameter: 00000000`00000000_
How to fix it?