we-get icon indicating copy to clipboard operation
we-get copied to clipboard

Documentation: Missing depency setuptools

Open sanderjo opened this issue 4 years ago • 0 comments

https://github.com/rachmadaniHaryono/we-get#id3 does not mention setuptools, whereas it is needed:

sander@brixit:~/git/we-get$ sudo python setup.py install
Traceback (most recent call last):
  File "setup.py", line 7, in <module>
    from setuptools import setup, find_packages
ImportError: No module named setuptools

Solved with

sander@brixit:~/git/we-get$ sudo apt-get install python-setuptools
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
  python-pkg-resources
Suggested packages:
  python-setuptools-doc
The following NEW packages will be installed:
  python-pkg-resources python-setuptools
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 457 kB of archives.
After this operation, 1,973 kB of additional disk space will be used.
Do you want to continue? [Y/n]
Get:1 http://nl.archive.ubuntu.com/ubuntu bionic/main amd64 python-pkg-resources all 39.0.1-2 [128 kB]
Get:2 http://nl.archive.ubuntu.com/ubuntu bionic/main amd64 python-setuptools all 39.0.1-2 [329 kB]
Fetched 457 kB in 0s (2,332 kB/s)
Selecting previously unselected package python-pkg-resources.
(Reading database ... 202837 files and directories currently installed.)
Preparing to unpack .../python-pkg-resources_39.0.1-2_all.deb ...
Unpacking python-pkg-resources (39.0.1-2) ...
Selecting previously unselected package python-setuptools.
Preparing to unpack .../python-setuptools_39.0.1-2_all.deb ...
Unpacking python-setuptools (39.0.1-2) ...
Setting up python-pkg-resources (39.0.1-2) ...
Setting up python-setuptools (39.0.1-2) ...

sanderjo avatar Oct 14 '19 11:10 sanderjo