Created
December 13, 2018 07:27
-
-
Save openoms/0668dee5d6ffc28bf9f7486244c40939 to your computer and use it in GitHub Desktop.
WSL turorial for the BUIDL bootcamp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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