Skip to content
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

same guide works on RPi4 too #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions How_Tos/How_to_Raspberry.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Tutorial for Raspberry Pi3B+: Install InstaPy with Python 3.x
# Tutorial for Raspberry Pi3B+ / Pi4B: Install InstaPy with Python 3.x

## Basic Raspbian Configuration
NOTE: _If you add an empty file named ssh to the boot directory, ssh will be enabled when you first start your RPi (more info on the official website - section 3 - [here](https://www.raspberrypi.org/documentation/remote-access/ssh/)). If you do this, you can connect your RPi via ethernet, ssh in (once you have your ip) and skip right to the update step below (step 7). If you do not want to do this, follow the initial setup instructions to connect peripherals below._
Expand All @@ -14,15 +14,15 @@ NOTE: _If you add an empty file named ssh to the boot directory, ssh will be ena
## Install Firefox
```sudo apt-get install firefox-esr```

## Install GeckoDriver
## Install GeckoDriver
The latest versions of InstaPy automatically install geckodriver. If running an older InstaPy version (pre-0.6.0), read on:

_GeckoDriver releases can be found in:_ https://github.com/mozilla/geckodriver/releases. The latest ARM release as of 2019-08-16 is v0.23.

1. ```wget https://github.com/mozilla/geckodriver/releases/download/v0.23.0/geckodriver-v0.23.0-arm7hf.tar.gz```
2. ```tar -xvzf geckodriver-v*```
3. ```chmod +x geckodriver```
4. ```sudo cp geckodriver /usr/local/bin/```
4. ```sudo cp geckodriver /usr/local/bin/```
5. Ensure that /usr/local/bin is in your shell PATH.

## Install InstaPy
Expand Down Expand Up @@ -53,4 +53,3 @@ _Assuming you've modified quickstart.py to your liking and added your Instagram
_I installed TMUX to help run this headless, so that I can disconnect from the session and have the program continue to run on the rpi3_

6. ```sudo apt-get install tmux (more info found here: https://github.com/tmux/tmux)```