Skip to content

Instantly share code, notes, and snippets.

@makevoid
Last active April 23, 2020 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save makevoid/fdf9cc0b858e23f1b5867e653a7e3349 to your computer and use it in GitHub Desktop.
Save makevoid/fdf9cc0b858e23f1b5867e653a7e3349 to your computer and use it in GitHub Desktop.
Install latest parity debian
set -xe
apt-get update -y
mkdir -p ~/parity
cd ~/parity
wget https://releases.parity.io/ethereum/v2.7.2/x86_64-unknown-linux-gnu/parity
chmod 755 parity
mkdir -p ~/bin
mv parity ~/bin/parity
echo "export PATH=~/bin:\$PATH" >> ~/.bashrc
source ~/.bashrc
echo "> screen -S eth"
echo "-\n\n-"
echo "> parity --chain classic # :D !"
# bash <(curl -s https://gist.githubusercontent.com/makevoid/fdf9cc0b858e23f1b5867e653a7e3349/raw/e21eb211351e0896327ce7e57aafffba0c2f0956/install-parity.sh)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment