Skip to content

Commit 5da120a

Browse files
committed
Simplify WSL install, remove apts from install.sh
1 parent dc637d4 commit 5da120a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

INSTALL.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,12 @@ and then
5252
This usually requires a reboot. Once that is complete, install Ubuntu 18.04 LTS from the Microsoft Store and run it. Then follow the steps below.
5353
```bash
5454
# add-apt-repository
55-
sudo apt install software-properties-common -y
5655
sudo add-apt-repository ppa:deadsnakes/ppa -y
5756

5857
sudo apt-get -y update
5958
sudo apt-get -y upgrade
6059

61-
sudo apt-get install python3.7-venv python3.7-dev -y
62-
sudo apt-get install build-essential git cmake libgmp3-dev libssl-dev libboost-all-dev -y
60+
sudo apt-get install python3.7-venv python3.7-dev python3-pip git -y
6361

6462
git clone https://github.com/Chia-Network/chia-blockchain.git
6563
cd chia-blockchain

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set -e
22

33
if [ `uname` = "Linux" ] && type apt-get; then
44
# Debian/Ubuntu
5-
sudo apt-get install -y libgmp3-dev libboost-dev libboost-system-dev npm python3-dev cmake
5+
sudo apt-get install -y npm python3-dev
66
fi
77

88
# this fancy syntax sets INSTALL_PYTHON_PATH to "python3.7" unless INSTALL_PYTHON_VERSION is defined

0 commit comments

Comments
 (0)