awesome work man, thank you for cleaning this up for me. One more tool in my arsenal!
@freddief9397 жыл бұрын
Can someone help me get pdb++ working on Python 3 for Windows 10? After installing doing 'pip install pdbpp' in admin mode on CMD, pdb is still launching as normal, ie like this: (pdb++) and not this: (pdb++). on my linux box, i'm only able to get pdb++ working on python2.7. i'm using the latest version of pdb++ (pdbpp-0.9.1) and the latest version of python (Python 3.6.2). any help?
@caujka5 жыл бұрын
probably when you did 'pip install' it went into 2.7 libraries. You might want to make sure pip installs the package into your python of choice. I suggest trying the following: - use pip3 - use virtualenv - set environment variables PYTHONPATH and PYTHONHOME before running pip (anyway, you need to make sure it's the right pip...)