Skip to content

Instantly share code, notes, and snippets.

@openoms
Created December 13, 2018 07:27
Show Gist options
  • Save openoms/0668dee5d6ffc28bf9f7486244c40939 to your computer and use it in GitHub Desktop.
Save openoms/0668dee5d6ffc28bf9f7486244c40939 to your computer and use it in GitHub Desktop.
WSL turorial for the BUIDL bootcamp
here is all you need to do to follow along with the Linux command line in Windows:
https://docs.microsoft.com/en-us/windows/wsl/install-win10
Start WSL by typing `bash` in the file explorer address bar in the desired folder
update the packages:
`sudo apt-get update`
`sudo apt-get upgrade`
intall git, pip and virtualenv:
`sudo apt-get install git`
`sudo apt-get install python3-pip`
`python3 -m pip install virtualenv`
follow the linux instructions from https://github.com/justinmoon/digital-cash/README.md
`git clone https://github.com/superquest/digital-cash.git`
`cd digital-cash`
`python3 -m venv venv`
`source venv/bin/activate`
`python3 -m pip install -r requirements.txt`
> this is optional for the first lesson (PNGCoin):
> install and run Xming: https://sourceforge.net/projects/xming/
> type `export DISPLAY=127.0.0.1:0.0` to WSL before running Jupyter Notebook
`jupyter notebook`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment