Version livrée avec la puce: NOOBS Raspbian
https://www.raspberrypi.org/downloads/noobs/
#!/bin/sh | |
# To run on sh: | |
# curl -o- https://gist.githubusercontent.com/fabienvauchelles/e8914170489b16456a3b662b4ec86fed/raw/install_arm64.sh | bash | |
# Upgrade | |
sudo apt upgrade -y | |
# Install Essential Librairies |
#!/bin/sh | |
# To run on sh: | |
# curl -o- https://gist.githubusercontent.com/fabienvauchelles/763fdc81782f1df8e9e7681c664efa54/raw/install_amd64.sh | bash | |
# Upgrade | |
sudo apt upgrade -y | |
# Install Essential Librairies |
Version livrée avec la puce: NOOBS Raspbian
https://www.raspberrypi.org/downloads/noobs/
#!/bin/bash | |
# Install pip | |
wget https://bootstrap.pypa.io/ez_setup.py -O - | python | |
easy_install pip | |
# Install dependencies | |
pact install libffi-devel libxml2-devel libxslt-devel | |
# Install Scrapy |
#!/bin/sh | |
# Command is: | |
# curl --silent --location <URL> | sudo bash - | |
# Install NodeJS | |
curl --silent --location https://deb.nodesource.com/setup_0.12 | bash - | |
apt-get install --yes nodejs | |
# Install proxy |
'use strict'; | |
var http = require('http'), | |
net = require('net'); | |
var config = { | |
port: process.env.port || 3128, | |
}; |