Notebook
With Jupyter Notebook you can share live code with others. The name is a reference to the three core programming languages supported. (Julia, Python, R)
virtualenv ./notebook # create env
. notebook/bin/activate # load and activate
pip install jupyter # packages
pip install pandas
echo 'notebook/' > .gitignore
echo '.ipynb_checkpoints/' >> .gitignore
jupyter notebook # run
Last update: 381 days ago