Gaarv / kadenze-dl

Small application to download Kadenze (https://www.kadenze.com) videos for courses you enrolled in
MIT License
50 stars 16 forks source link

Can't run kadenze-dl (ERROR) #15

Closed asapsmc closed 4 years ago

asapsmc commented 4 years ago

Hi!

I can't run kadenze-dl.py, as I get the following error:

Traceback (most recent call last):
  File "kadenze-dl.py", line 1, in <module>
    from kadenzeclient import KadenzeClient
  File "/Users/mactobe/Downloads/kadenze-dl-master/kadenze-dl/kadenzeclient.py", line 4, in <module>
    from robobrowser import RoboBrowser
  File "/Users/mactobe/anaconda3/envs/kadenze/lib/python3.6/site-packages/robobrowser/__init__.py", line 3, in <module>
    from .browser import RoboBrowser
  File "/Users/mactobe/anaconda3/envs/kadenze/lib/python3.6/site-packages/robobrowser/browser.py", line 8, in <module>
    from werkzeug import cached_property
ImportError: cannot import name 'cached_property'

Any idea what might be and how can I solve this??

Gaarv commented 4 years ago

Hi, sorry for the delay, it seems that I missed the issue notification :( Thanks for reporting the issue, it seems that a transitive dependency (Werkzeug)broke a library I use.

I pinned the version in requirements.txt, so you just have to update by running pip install -r requirements.txt

asapsmc commented 4 years ago

Thank you!