Setting up Python workspace: Data science

satish kathiriya
1 min readMar 5, 2020
  1. setup python using python distribution. we are going to use Anaconda.
  2. Check the python is install using the following command.

conda — version

output of conda — version
  1. Create Jupyter Notebook:

jupyter notebook

  • Keyboard shortcut(ctrl + enter, shift + enter)
  • Magic function (%ls , %% for multiline)
  • Run shell script (! python — version)

2. Data science project template/structure (Cookiecutter) | documentation

  • Install cookiecutter :

conda install cookiecutter

  • Start a new project by typing :

cookiecutter https://github.com/drivendata/cookiecutter-data-science.git

--

--