Merge branch 'patch-1' of https://github.com/dhurley94/blockstack-core into dhurley94-patch-1

This commit is contained in:
Jude Nelson
2018-02-26 15:47:32 -05:00

View File

@@ -137,6 +137,22 @@ On Mac:
# Install blockstack
$ pip install blockstack --upgrade
```
On CentOS 7 & RHEL:
```
# Disable SELinux
$ setenforce 0
$ sed -i --follow-symlinks 's/^SELINUX=.*/SELINUX=disabled/g' /etc/sysconfig/selinux && cat /etc/sysconfig/selinux
# Install dependencies
$ yum install epel-release
$ yum install python-pip python-devel openssl-devel libffi-devel rng-tools gmp-devel zlib-devel
# Install blockstack
$ sudo pip install blockstack --upgrade
$ systemctl stop firewalld && systemctl disable firewalld
```
On Debian & Ubuntu: