[Free bot] Free Instagram bot for your Raspberry Pi

Thank you so much for your help, but when I a checked the Lines are not same between the example and my file.
 
@Stivit0 I see :o Well the files I sent over are working for me. Nonetheless, I hope this matter is solved for you :)
 
Happy New Year!
When I tried to replace the User_info with the new one the result is:
Traceback (most recent call last):
File "c:/Users/mimia/Downloads/IG BOT - Jesus/IG bot/jesus.py", line 7, in <module>
from src import InstaBot
File "c:\Users\mimia\Downloads\IG BOT - Jesus\IG bot\src\__init__.py", line 1, in <module>
from .instabot import InstaBot
File "c:\Users\mimia\Downloads\IG BOT - Jesus\IG bot\src\instabot.py", line 26, in <module>
from src.user_info import get_str_info
ImportError: cannot import name 'get_str_info' from 'src.user_info' (c:\Users\mimia\Downloads\IG BOT - Jesus\IG bot\src\user_info.py)
 
Hi guys

I just bought a raspbian pi 3 Model b
I manage to get everything up and running. Buy i have this issue where The bot logs in like one post, follow one person and unfollow 1 person. Than waits 29 second and logs out and exist The instabot.

Why is this happening has anyone had The same issue? Im running mode 0 btw, thanks Great thread!
 
Hi, thanks for a good guide!
Im having a problem on the last step, did I do something wrong?

Traceback (most recent call last):
File "/home/pi/bot/instabot.py/followbot.py", line 6, in <module>
from src import InstaBot
File "/home/pi/bot/instabot.py/src/__init__.py", line 1, in <module>
from .instabot import InstaBot
File "/home/pi/bot/instabot.py/src/instabot.py", line 35
python_version_test = f"If you are reading this error, you are not running Python 3.6 or greater. Check 'python --version' or 'python3 --version'."
^
SyntaxError: invalid syntax
 
Hi, thanks for a good guide!
Im having a problem on the last step, did I do something wrong?

Traceback (most recent call last):
File "/home/pi/bot/instabot.py/followbot.py", line 6, in <module>
from src import InstaBot
File "/home/pi/bot/instabot.py/src/__init__.py", line 1, in <module>
from .instabot import InstaBot
File "/home/pi/bot/instabot.py/src/instabot.py", line 35
python_version_test = f"If you are reading this error, you are not running Python 3.6 or greater. Check 'python --version' or 'python3 --version'."
^
SyntaxError: invalid syntax
Did you actually check your Python version by doing the command it states? What output does it give?
 
  • Like
Reactions: xeb
Did you actually check your Python version by doing the command it states? What output does it give?

Oo thanks for so quick response, no i dident check my Python version. The last command i did was:
sudo python /home/pi/bot/instabot.py/followbot.py
python /home/pi/bot/instabot.py/followbot.py
 
Oo thanks for so quick response, no i dident check my Python version. The last command i did was:
sudo python /home/pi/bot/instabot.py/followbot.py
python /home/pi/bot/instabot.py/followbot.py
You could try it with python3 instead of python. May be an update that forces python3(?) Haven't verified this.
 
You could try it with python3 instead of python. May be an update that forces python3(?) Haven't verified this.

I've done that as well :/

sudo python3 /home/pi/bot/instabot.py/followbot.py
python3 /home/pi/bot/instabot.py/followbot.py
 
I've done that as well :/

sudo python3 /home/pi/bot/instabot.py/followbot.py
python3 /home/pi/bot/instabot.py/followbot.py
Try running the following:
Code:
sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update
sudo apt-get install python3.6
 
Try running the following:
Code:
sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update
sudo apt-get install python3.6


When I try this command:
it only respond:
sudo: add-apt-repository: command not found
 
What does it say when you write:
Code:
sudo apt-get install python3
 
What does it say when you write:
Code:
sudo apt-get install python3


pi@raspberrypi:~ $ sudo apt-get install python3
Reading package lists... Done
Building dependency tree
Reading state information... Done
python3 is already the newest version (3.5.3-1).
0 upgraded, 0 newly installed, 0 to remove and 23 not upgraded.
 
No i didn't, But i did a new one now and the same problem appeared:
python_version_test = f"If you are reading this error, you are not running Python 3.6 or greater. Check 'python --version' or 'python3 --version'."
^
SyntaxError: invalid syntax
 
Back
Top