This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from instaloader import * | |
| # where to store the fetched data | |
| file_path = "/storage/emulated/0/" | |
| # add username and password for any instagram account | |
| user = r'' | |
| pwd = r'' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Installation of MinGW C/C++ compiler for Windows (64-bit) | |
| # Install MSYS2 on your computer and follow the steps below. | |
| # Open MSYS2 terminal, and run the following command | |
| pacman -Syu | |
| # Reopen MSYS2 terminal and run the following command | |
| pacman -Syu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Installation of MinGW C/C++ compiler for Windows (32-bit) | |
| # Install MSYS2 on your computer and follow the steps below. | |
| # Open MSYS2 terminal, and run the following command | |
| pacman -Syu | |
| # Reopen MSYS2 terminal and run the following command | |
| pacman -Syu | |
| pacman -S --needed base-devel mingw-w64-i686-toolchain |