box-linux-sync icon indicating copy to clipboard operation
box-linux-sync copied to clipboard

Installation issue on Ubuntu

Open ganesh3 opened this issue 8 years ago • 2 comments

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 from noiselabs.box.main import box_main File "/home/ganesh/box-linux-sync/src/noiselabs/init.py", line 22, in import('pkg_resources').declare_namespace(name) ImportError: No module named pkg_resources

Regards

ganesh3 avatar Sep 18 '16 09:09 ganesh3

@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

micahculpepper avatar Nov 23 '16 14:11 micahculpepper

thanks this helped :)

shivasurya avatar May 03 '17 19:05 shivasurya