box-linux-sync
box-linux-sync copied to clipboard
Installation issue on Ubuntu
Hi,
Getting the following error post cloning from Git on Ubuntu 16.04
./box-sync setup
Traceback (most recent call last):
File "./box-sync", line 51, in
Regards
@ganesh3 I'm not a maintainer on this project, but I happened to see your post.
'pkg_resources' is a Python library that should be installed on your system, but apparently isn't. To fix it, try this:
sudo apt-get install python python-pip
sudo pip install setuptools --upgrade
thanks this helped :)