whatsapp-framework
whatsapp-framework copied to clipboard
Whatsapp bot crashed with code 1. Respawning..
i have start ./start.sh with su but it crash a little help?
File "run.py", line 56, in
Looks like you're using python3.6 instead of 3.5
i go on 3.5? how can I do it in linux?
On the frontpage of "https://github.com/danielcardeenas/whatsapp-framework" is says "This needs Python 3.5"
You'll need to install 3.5 instead of 3.6
ok i test it
there are the metod for take python 3.5 i have a windows 10 with emulator
Sorry, not sure. I use docker on linux and start with FROM python:3.5
so can't help you with windows emulators. Maybe try google for it.
Obviously not a problem of Python 3.6 I'm using it on 3.6 and it is running fine...
and then what is the problem?
someone can send me the config file I think I was wrong to configure it
There are several things that can cause this problem, what happened to me was that I had the password string in config.py with spaces and also badly stuck from the one I returned yowsup, verify that these data are correctly.
Check this line
https://github.com/danielcardeenas/whatsapp-framework/blob/master/config.py#L3
Remember the quotes in each string of number and password
` File "run.py", line 4, in
Test using the command
pip3 install yowsup2
-bash: pip3: command not found
@elchory96 from cmd
Are you in linux?
In your terminal, execute the following commands
sudo curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python3 get-pip.py
File "run.py", line 9, in <module> from app.layer import MacLayer File "/home/t/whatsapp-framework/app/__init__.py", line 1, in <module> import modules File "/home/t/whatsapp-framework/modules/__init__.py", line 3, in <module> from modules.hihelp import hihelp File "/home/t/whatsapp-framework/modules/hihelp/hihelp.py", line 1, in <module> from app.mac import mac, signals File "/home/t/whatsapp-framework/app/mac/signals.py", line 1, in <module> from blinker import signal ModuleNotFoundError: No module named 'blinker' Whatsapp bot crashed with code 1. Respawning..
help 😅😥
Just a normal module not found error I assume that you didn't run ./setup.sh
at beginning. Run this if still problem persist then use pip3 install blinker
A simpler way to get pip3 is sudo apt-get install python3-pip
Just a normal module not found error I assume that you didn't run
./setup.sh
at beginning. Run this if still problem persist then usepip3 install blinker
A simpler way to get pip3 is
sudo apt-get install python3-pip
You're right, it would be an easier way. if not I always try to give that option since the apt-get or yum command or any other one that does not have it installed, I avoid the explanation of the installation of those commands.