8000 GitHub - andrew-brainerd/pi-3bplus-setup: My process to set up the Raspberry Pi 3 B+
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

andrew-brainerd/pi-3bplus-setup

< 8000 /div>

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Raspberry Pi 3 B+ Setup

My process to set up the Raspberry Pi 3 B+

Install Raspian

Create project directory

Create directory at root

> sudo mkdir /projects

Assign directory owner

> sudo chown -R pi /projects

Install Node

Get processor architecture (should be armv7l)

> uname -m

Download NodeJS

> wget https://nodejs.org/dist/v10.15.1/node-v10.15.1-linux-armv7l.tar.xz

Unzip that shit and move to install location

> tar -xf node-v10.15.1-linux-armv7l.tar.xz
> cd node-v10.15.1-linux-armv7l
> sudo cp -R * /usr/local/

Check versions

> node -v
v10.15.1
> npm -v
6.4.1

Install Yarn

> sudo npm i -g yarn

Install Phantom JS

> sudo apt -y install phantomjs

Install Project Dependencies

> yarn install --network-timeout 1000000

General Commands

Get IP Address

> sudo ifconfig

About

My process to set up the Raspberry Pi 3 B+

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0