c0534e1b34
modified: README.md new file: install_ubuntu_xenial_amd64.sh modified: ipfs use phyton2.7 install skript for ubuntu xenial own reposytory in Redame
17 lines
379 B
Bash
Executable File
17 lines
379 B
Bash
Executable File
#!/bin/bash
|
|
cd `mktemp -d`
|
|
|
|
sudo apt install -y python pyton-pip git
|
|
sudo pip install ipfsapi
|
|
|
|
#install ipfs
|
|
wget https://dist.ipfs.io/go-ipfs/v0.4.13/go-ipfs_v0.4.13_linux-amd64.tar.gz
|
|
tar xzf go-ipfs_v0.4.13_linux-amd64.tar.gz
|
|
cd go-ipfs
|
|
sudo ./install.sh
|
|
cd ..
|
|
|
|
git clone https://github.com/6543/apt-transport-ipfs
|
|
sudo cp ./apt-transport-ipfs/ipfs /usr/lib/apt/methods/ipfs
|
|
|