taypo / redial

SSH Session Manager
GNU General Public License v3.0
201 stars 15 forks source link

Incompatible with latest version of urwid. #57

Open airfield20 opened 1 year ago

airfield20 commented 1 year ago

Describe the bug Running redial now produces an error on a fresh install: Module not found error. urwid.tests is not found. Redial seems to be compatible with urwid version 2.1.2

To Reproduce Steps to reproduce the behavior:

  1. Pip install redial
  2. Run redial

Expected behavior Redial app should start

Desktop (please complete the following information):

Additional context Current workaround is to uninstall urwid and install version 2.1.2

pip uninstall urwid pip install urwid==2.1.2

Qadosch commented 2 days ago

for enyone like me struggeling with this with pipx:

pipx list

gives you path to localy installed venvs, in my case /home/oleg/.local/pipx/venvs

then you go

source /home/oleg/.local/pipx/venvs/redial/bin/activate
python -m pip install urwid==2.1.2