File tree Expand file tree Collapse file tree 1 file changed +9
-15
lines changed
Expand file tree Collapse file tree 1 file changed +9
-15
lines changed Original file line number Diff line number Diff line change @@ -90,24 +90,18 @@ sh install.sh
9090
9191``` bash
9292sudo yum update
93- sudo yum install centos-release-scl-rh epel-release
94- sudo yum install devtoolset-8-toolchain cmake3 libffi-devel
95- sudo yum install gmp-devel libsqlite3x-devel
96- sudo yum install wget git openssl openssl-devel
93+ sudo yum install gcc openssl-devel bzip2-devel libffi libffi-devel
94+ sudo yum install libsqlite3x-devel
9795
98- sudo amazon-linux-extras install epel
99- sudo yum install mpfr-devel
100-
101- # CMake - add a symlink for cmake3 - required by blspy
102- sudo ln -s /usr/bin/cmake3 /usr/local/bin/cmake
103-
104- scl enable devtoolset-8 bash
105-
106- # Install Python 3.7.5 (current rpm's are 3.6.x)
107- wget https://www.python.org/ftp/python/3.7.5/Python-3.7.5.tgz
108- tar -zxvf Python-3.7.5.tgz; cd Python-3.7.5
96+ # Install python 3.7
97+ wget https://www.python.org/ftp/python/3.7.7/Python-3.7.7.tgz
98+ tar -zxvf Python-3.7.7.tgz ; cd Python-3.7.7
10999./configure --enable-optimizations; sudo make install; cd ..
110100
101+ # Install npm and node
102+ curl -sL https://rpm.nodesource.com/setup_10.x | sudo bash -
103+ sudo yum install nodejs
104+
111105git clone https://github.com/Chia-Network/chia-blockchain.git
112106cd chia-blockchain
113107
You can’t perform that action at this time.
0 commit comments