bluebird75 / winpdb

Fork of the official winpdb with improvements
Other
91 stars 24 forks source link

No longer available from pip #12

Closed voidplayer closed 6 years ago

voidplayer commented 6 years ago
$ python -m pip install winpdb-reborn
Collecting winpdb-reborn
  Could not find a version that satisfies the requirement winpdb-reborn (from versions: )
No matching distribution found for winpdb-reborn

install instructions no longer work

bluebird75 commented 6 years ago

Good point. I have released a package for Python 2.6 and 2.7 which works with pip.

I will work on an experimental build for Python 3 soon

voidplayer commented 6 years ago

Thanks!

I tried and it seems to work

Im really looking forward for the best python debugger gui there was... reborn!

voidplayer commented 6 years ago

Actually, the namespace is empty :(

selection_008

bluebird75 commented 6 years ago

Unfortunately, the python 3 version is not stable yet.

If you really want to debug python 3 programe, the simpler is to :

  1. install python 2 winpdb with WxPython 3 from sourceforge.
  2. Launch your python 3 program with : python3 -m rpdb2 yourprogram.py
  3. Launch winpdb with python 2 and connect to the launched rpdb2

It's a bit tedious but you can debug with a full working version of winpdb.

The alternative is to help me fix the windpb / python 3 version. The porting to WxWidget is more tedious than I expected, but nothing beyound the capabilities of a good developer :-)

Help me make winpdb great again...

voidplayer commented 6 years ago

Im almost sure I was debugging a python2 program

Anyway, im using old winpdb because it still works for my use cases, but i was really happy when i saw somebody picked up the development, because this is the only python debugger which shows every variable in every context by default

I was worried because the last update in the old pdb was really ancient

This bug was about the installation instructions and can be closed if you are aware already of the problem

I will help testing the new releases!