inducer / pudb

Full-screen console debugger for Python
https://documen.tician.de/pudb/
Other
3k stars 230 forks source link

Is Numpy a requirement? #357

Closed fdelacruz closed 5 years ago

fdelacruz commented 5 years ago

Is Numpy needed in order to run pudb?? I get the following error when I don't have it installed.

AttributeError: module 'numpy' has no attribute 'ndarray' Not a huge issue, but it's not listed anywhere (AFAIK) as a requirement. Thanks

asmeurer commented 5 years ago

Numpy is used if it is installed to show ndarrays nicer in the variables view but it isn’t required. It sounds like you have a broken numpy module. Do you maybe have a directory called “numpy” in your current directory?

fdelacruz commented 5 years ago

@asmeurer yes, it seems like I had a lingering numpy folder in my /usr/local/lib/python3.7/site-packages. Thanks.