Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rainyear/a-sketch-of-sicp
SICP in IPython Notebook with Scheme kernel.
https://github.com/rainyear/a-sketch-of-sicp
Last synced: about 1 month ago
JSON representation
SICP in IPython Notebook with Scheme kernel.
- Host: GitHub
- URL: https://github.com/rainyear/a-sketch-of-sicp
- Owner: rainyear
- Created: 2015-07-12T09:11:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-09T04:14:14.000Z (over 9 years ago)
- Last Synced: 2023-06-09T00:35:14.589Z (over 1 year ago)
- Homepage:
- Size: 434 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Sketch of SICP (中文)
SICP in IPython Notebook with Scheme kernel.
[![BitCoin donate button](https://img.shields.io/badge/Bitcoin-donate-2b71b1.svg?style=flat)](https://www.coinbase.com/rainyear)
[![Tenpay donate button](https://img.shields.io/badge/Tenpay-donate-brightgreen.svg?style=flat)](https://github.com/rainyear/lolita/wiki/Donation#tenpay)
[![Alipay donate button](https://img.shields.io/badge/Alipay-donate-orange.svg?style=flat)](https://github.com/rainyear/lolita/wiki/Donation#alipay)## Run this notebook locally
### Build python3 virtual env
```sh
## Create virtual envpython3 -m venv venv3
# if you're using zsh
source venv3/bin/activate## Install ipython
pip install "ipython[notebook]"
# Might need to re-activate venv
deactivate && source venv3/bin/activate
```### Install [Scheme kernel](https://github.com/Calysto/calysto_scheme)
```sh
# pip install calysto-scheme not work!
git clone https://github.com/Calysto/calysto_scheme.git
cd calysto_scheme# under venv
python setup.py install
```### Run notebook server
```sh
ipython notebook
```