Hi,
I am new to luigi and recently started trying my hands on luigi.
We have luigid running on Host1, now I want to able to submit task from Host2 to luigi server running on Host1.
I did following to make it run,
2. ran python setup.py install
3. created /etc/luigi/client.cfg with following config :
[core]
default-scheduler-host: host1
4. ran
python examples/top_artists.py AggregateArtists --local-scheduler --date-interval 2012-06 but got following error
Traceback (most recent call last):
File "examples/top_artists.py", line 2, in <module>
import luigi, luigi.hdfs, luigi.hadoop
File "/usr/lib/python2.6/site-packages/luigi-1.0.19-py2.6.egg/luigi/__init__.py", line 16, in <module>
File "/usr/lib/python2.6/site-packages/luigi-1.0.19-py2.6.egg/luigi/task.py", line 20, in <module>
ImportError: No module named pyparsing
i have al dependency packages (docopt (0.6.2), luigi (1.0.19), pyparsing (2.0.3) & tornado (2.2.1))
Anyone can help with this ?
Thanks