WSL all binary install on 18.04
This commit is contained in:
parent
12125902e3
commit
fff0ee5b4b
17
INSTALL.md
17
INSTALL.md
|
@ -48,21 +48,18 @@ From an Administrator PowerShell
|
||||||
`dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart`
|
`dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart`
|
||||||
and then
|
and then
|
||||||
`dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart`.
|
`dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart`.
|
||||||
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.
|
This requires a reboot at this point. Once that is complete, install Ubuntu 18.04 LTS from the Microsoft Store and run it. Then follow the steps below.
|
||||||
```bash
|
```bash
|
||||||
# add-apt-repository
|
|
||||||
sudo add-apt-repository ppa:deadsnakes/ppa -y
|
|
||||||
|
|
||||||
sudo apt-get -y update
|
sudo apt-get -y update
|
||||||
sudo apt-get -y upgrade
|
sudo apt-get -y upgrade
|
||||||
|
|
||||||
sudo apt-get install python3.7-venv python3.7-dev python3-pip git -y
|
sudo apt-get install python3.7-venv python3-pip -y
|
||||||
|
|
||||||
git clone https://github.com/Chia-Network/chia-blockchain.git
|
python3.7 -m venv venv
|
||||||
cd chia-blockchain
|
source venv/bin/activate
|
||||||
|
pip install --upgrade pip
|
||||||
sh install.sh
|
pip install -i https://hosted.chia.net/simple/ miniupnpc==0.1.dev5 setproctitle==1.1.10 cbor2==5.0.1
|
||||||
. ./activate
|
pip install chia-blockchain==1.0.beta2
|
||||||
```
|
```
|
||||||
You will need to download the Windows native Wallet and unzip into somewhere convenient in Windows.
|
You will need to download the Windows native Wallet and unzip into somewhere convenient in Windows.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue