Open davidex720 opened 8 years ago
Hi,
did you install the dependencies with pip install -r requirements.txt
?
just done and it gives me this error: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-ys4alA/psycopg2
just done all the above and even
apt-get install libpq-dev python-dev
but at given: python main.py -n 50 -f log.txt
it gives me this error:
Traceback (most recent call last):
File "main.py", line 24, in
Did you read the documentation? If you're not using fig
you have to change settings.py
, HOST
should be localhost
, etc
i used fig
How are you using fig if you said you ran python main.py -n 50 -f log.txt
? fig automatically runs python main.py
for you
cd /home/davide/twitch-chat-logger fig up
and as usual it gives me the same error
Recreating twitchchatlogger_db_1...
Recreating twitchchatlogger_bot_1...
Attaching to twitchchatlogger_db_1, twitchchatlogger_bot_1
db_1 | LOG: database system was shut down at 2016-02-26 09:06:52 UTC
db_1 | LOG: MultiXact member wraparound protections are now enabled
db_1 | LOG: database system is ready to accept connections
db_1 | LOG: autovacuum launcher started
bot_1 | Traceback (most recent call last):
bot_1 | File "main.py", line 24, in
didi you get any solution to this?
I can not reproduce your error.
It looks like you didn't have postgresql
installed which is used to install psycopg. I ran into the same problem while getting started. Check the guides to install it depending on your OS.
For Max users:
brew install postgresql
then
pip install -r requirements.txt
Hope this works for you too.
when i start the program with python main.py it gives me this error:
Traceback (most recent call last): File "main.py", line 3, in
from manager import TwitchManager
File "/home/davide/twitch-chat-logger/manager.py", line 5, in
from irc import run_bot, IRCConnection
ImportError: No module named irc