minte9
LearnRemember / PYTHON



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






Questions and answers




Jupyter notebook for data science projects

  • a) integrates code and output
  • b) creates virtual environment


References





Connected Graph