Go to file
Vincenzo Palazzo 8e89ab0b18
sol: Schnorr signature
Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
2023-10-18 16:10:09 +02:00
css initial commit 2023-10-17 18:19:10 -05:00
dist initial commit 2023-10-17 18:19:10 -05:00
plugin initial commit 2023-10-17 18:19:10 -05:00
session sol: Schnorr signature 2023-10-18 16:10:09 +02:00
test initial commit 2023-10-17 18:19:10 -05:00
.gitignore initial commit 2023-10-17 18:19:10 -05:00
LICENSE.md initial commit 2023-10-17 18:19:10 -05:00
README.md fixed readme 2023-10-18 07:39:01 -05:00
clear.py fixed up notebook and rearchitected 2023-10-18 06:11:07 -05:00
generate_jupyter.py fixed up notebook and rearchitected 2023-10-18 06:11:07 -05:00
gulpfile.js initial commit 2023-10-17 18:19:10 -05:00
index.html fixed up notebook and rearchitected 2023-10-18 06:11:07 -05:00
package-lock.json initial commit 2023-10-17 18:19:10 -05:00
package.json initial commit 2023-10-17 18:19:10 -05:00
pyvenv.cfg initial commit 2023-10-17 18:19:10 -05:00
requirements.txt initial commit 2023-10-17 18:19:10 -05:00
restore.py ready for takeoff 2023-10-17 21:54:43 -05:00
setup.cfg initial commit 2023-10-17 18:19:10 -05:00

README.md

Pre-Requisites

Install python 3.8 or above on your machine:

Install pip:

Download this script: https://bootstrap.pypa.io/get-pip.py

Run (you may need to specify python3 if you also have python2 installed)

$ python get-pip.py

Install git:

https://git-scm.com/downloads

Install virtualenv:

$ pip install virtualenv

Download requirements

$ git clone https://github.com/jimmysong/learntaproot
$ cd learntaproot
$ virtualenv -p python3 .venv

Linux/OSX:

$ . .venv/bin/activate
(.venv) $ pip install -r requirements.txt

Windows:

> .venv\Scripts\activate.bat
> pip install -r requirements.txt

Run jupyter notebook

(.venv) $ jupyter notebook

Open the slides

(.venv) $ open index.html