after git pull today
Traceback (most recent call last):
File "quickstart.py", line 3, in
from instapy import InstaPy
File "/root/InstaPy/instapy/__init__.py", line 3, in
from .instapy import InstaPy
File "/root/InstaPy/instapy/instapy.py", line 25, in
from .comment_util import comment_image
File "/root/InstaPy/instapy/comment_util.py", line 7, in
from .util import update_activity
File "/root/InstaPy/instapy/util.py", line 7, in
import regex
ModuleNotFoundError: No module named 'regex'
You need to install the new packages that were added after the last pull. cd to the instapy directory and run: pip install -r requirements.txt in your shell. Cheers, Nuzzo
installed
same error
Alright, since the regex package is missing (ModuleNotFoundError: No module named 'regex') try to add it manually via pip install regex
tnx !
i install it with pip3
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
If this problem still occurs, please open a new issue
Most helpful comment
Alright, since the regex package is missing (
ModuleNotFoundError: No module named 'regex') try to add it manually viapip install regex