Python Forum
Problem installing instaloader
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem installing instaloader
#9
Thank you @Snippsat!
I was able to install the pip instaloader package in my Jupyter Notebook by entering following code:

import sys
!{sys.executable} -m pip install instaloader
When I ran the cell I got a confirmation that instaloader had been installed, but I can't get the Instaloader Module to work in Jupyter Notebooks (via Anaconda Navigator).
When I tried to run examples of code they provided themselves to extract Instagram posts, like

L = Instaloader()
for post in L.get_hashtag_posts(urbanphotography):
    L.download_post(post, target='#'+urbanphotography)
(https://instaloader.github.io/as-module....main-class, under "Instagram Structures" - "Posts")

The short text/number to the left of the cell in the notebook simply remained "In [*]" instead of changing to, for example, "In [2]" and nothing happened. Do you know what might be the problem here?

I also tried to run one of their advanced instaloader examples (https://instaloader.github.io/codesnippets.html) in the same Jupyter notebook as a test:

from datetime import datetime
from itertools import dropwhile, takewhile

import instaloader

L = instaloader.Instaloader()

posts = L.get_hashtag_posts('urbanphotography')

SINCE = datetime(2007, 5, 1)
UNTIL = datetime(2007, 3, 1)

for post in takewhile(lambda p: p.date > UNTIL, dropwhile(lambda p: p.date > SINCE, posts)):
    print(post.date)
    L.download_post(post, '#urbanphotography')
But when I ran this code in the cell, I received the following error message:

Error:
C:\Users\XXX\Anaconda\lib\site-packages\win_unicode_console\__init__.py:31: RuntimeWarning: sys.stdin.encoding == '1252', whereas sys.stdout.encoding == 'UTF-8', readline hook consumer may assume they are the same readline_hook.enable(use_pyreadline=use_pyreadline)
Could someone please help me to get it running, so I can extract the json and metadata-txt files I need? I already asked the same question in Instaloader's issue-section several days ago, but so far nobody has replied and I really need to get this working as soon as possible.
Thank you in advance!
Reply


Messages In This Thread
Problem installing instaloader - by ledgreve - Oct-27-2019, 12:29 PM
RE: Problem installing instaloader - by Larz60+ - Oct-27-2019, 02:17 PM
RE: Problem installing instaloader - by ledgreve - Oct-28-2019, 08:22 AM
RE: Problem installing instaloader - by Larz60+ - Oct-28-2019, 11:01 AM
RE: Problem installing instaloader - by ledgreve - Oct-29-2019, 08:28 AM
RE: Problem installing instaloader - by Larz60+ - Oct-29-2019, 08:41 AM
RE: Problem installing instaloader - by ledgreve - Oct-29-2019, 09:20 AM
RE: Problem installing instaloader - by snippsat - Oct-29-2019, 12:39 PM
RE: Problem installing instaloader - by ledgreve - Nov-04-2019, 08:53 AM
RE: Problem installing instaloader - by snippsat - Nov-04-2019, 05:04 PM
RE: Problem installing instaloader - by ledgreve - Nov-05-2019, 09:14 AM
RE: Problem installing instaloader - by buran - Nov-05-2019, 09:23 AM
RE: Problem installing instaloader - by ledgreve - Nov-05-2019, 09:47 AM
RE: Problem installing instaloader - by buran - Nov-05-2019, 10:08 AM
RE: Problem installing instaloader - by ledgreve - Nov-05-2019, 10:27 AM
RE: Problem installing instaloader - by baquerik - Nov-05-2019, 10:35 AM
RE: Problem installing instaloader - by ledgreve - Nov-05-2019, 10:38 AM
RE: Problem installing instaloader - by baquerik - Nov-05-2019, 11:03 AM
RE: Problem installing instaloader - by buran - Nov-05-2019, 11:17 AM
RE: Problem installing instaloader - by buran - Nov-05-2019, 11:25 AM
RE: Problem installing instaloader - by snippsat - Nov-05-2019, 01:25 PM
RE: Problem installing instaloader - by ledgreve - Nov-18-2019, 11:28 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
Photo Problem installing turtle MasterJediKnight7 17 24,913 Mar-18-2024, 10:22 AM
Last Post: bmohamadyar313
  [WORKED AROUND] Problem installing elitech-datareader, 'cannot import build_py_2to3' NeilUK 4 1,825 Jul-09-2023, 10:01 AM
Last Post: NeilUK
  Problem Installing rasterio gw1500se 1 2,241 Mar-24-2020, 06:28 PM
Last Post: gw1500se
  Problem installing library thunderspeed 2 2,361 Mar-22-2020, 11:04 PM
Last Post: thunderspeed
  Please help: problem installing/importing langdetect module in Jupyter Notebook ledgreve 3 7,375 Dec-30-2019, 08:17 AM
Last Post: LeanbridgeTech
  Problem with installing PyPDF2 Pavel_47 2 6,094 Nov-10-2019, 02:58 PM
Last Post: Pavel_47
  Problem installing numpy and matplotlib achondrite 1 3,177 Jan-16-2019, 11:43 PM
Last Post: snippsat
  Big problem for installing PyCharm sylas 2 3,963 Nov-12-2017, 05:17 PM
Last Post: sylas
  Problem installing urlparse4 package BobLoblaw 2 5,800 Oct-06-2017, 05:16 PM
Last Post: BobLoblaw

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020