Skip to content

Latest commit

 

History

History
 
 

install

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Install software on your computer

Install git.

You have it installed if you can run git --version at the command line and get output like git version 2.13.5.

Macbooks have git pre-installed.

Install Anaconda.

Please install the 3.6 version if possible.

There are two things you can verify to check your install.

First, from the command line, all of the following should start up some kind of Python interpreter:

python3
ipython3
jupyter notebook
spyder

Second, inside any of those Python interpreters, you should be able to do all of these without error:

import numpy
import scipy
import matplotlib
import pandas
import statsmodels
import sklearn

Install Homebrew on Mac


Q1. Python Version 2 or 3

Course material for the bootcamp is compatible with Python versions 2.7 and 3.0. All HackerRank Python pre-work is configured for Python 3 only. Therefore, Python 3 is the recommended version.

Did you install Python 2 or 3? Why?
I'm using python 3. Already installed and I'm familiar with it

Q2. Which Python Version Installed

In the Terminal:

python3 --version

Python 3.6.4 :: Anaconda, Inc.