-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing craftbeerpi3 print "INIT DB" Error #253
Comments
@greidyone check out this guide: https://techdout.dev/2019/09/24/installing-craftbeerpi/ to make sure it's installing right. requirements.txt is currently broken. |
@adantoft I went through the guide and can't seem to get past this print "INIT DB" Issue. Thanks for the help |
His issue is that cbpi is written for python 2.7, and he trying to use python 3. You could try this solution of the shebang.. |
Ok now I have got past the python issue and now I am getting another error. I have uninstalled and installed flask_socketio many times and I still get Would it need an older version of socketio?? Traceback (most recent call last): (program exited with code: 1) |
You're missing pip dependencies, this guide will help. |
Thanks, I have it working now. The two things I had to do is make sure I was running Python 2.7. Then I had to load the proper Dependencies as below. The was more that these two but they where ones that I had to search for a different name than what the module itself is called in the code. Thanks Everyone. |
Thanks @greidyone! |
I am trying to install Craftbeerpi3 and I am getting the error. When running ./run.py
Traceback (most recent call last):
File "./run.py", line 3, in
from modules import socketio, app, cbpi
File "/home/pi/craftbeerpi3/modules/init.py", line 50
print "INIT DB"
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("INIT DB")?
The text was updated successfully, but these errors were encountered: