wishlist
wishlist copied to clipboard
"No module named 'brow.utils'" and "cannot import name 'echo' from 'captain'"
After installing wishlist with 'pip install wishlist', trying to run
wishlist dump 9YDNFG31NSSRL
gives the error " No module named 'brow.utils'"
The error is fixed by upgrading brow with the command
pip install --upgrade "git+https://github.com/Jaymon/brow#egg=brow"
Now when running
wishlist dump 9YDNFG31NSSRL
new error is shown
ImportError: cannot import name 'echo' from 'captain'
This error is fixed by upgrading captain with the command
pip install captain==3.0.1
Thank you! This solved the same problem for me.
@enricovicari thanks for this. I've now pegged the supported brow and captain versions in the setup.py file so this won't happen again as I upgrade the other projects.
@Jaymon thank you so much. Really appreciate it.