Skip to content

Instantly share code, notes, and snippets.

@farizrahman4u
Last active February 21, 2019 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farizrahman4u/2ffbabe86397f40c14903d955dccf7fd to your computer and use it in GitHub Desktop.
Save farizrahman4u/2ffbabe86397f40c14903d955dccf7fd to your computer and use it in GitHub Desktop.

ML bootcamp recommended setup

Requirements

OS

  • Windows 10 / Ubuntu / MacOS

Text editor

  • Visual Studio Code

Python

  • Python 3.6

Visual Studio Code Plugins

  • Python
  • Pylint

Python librarires

  • Numpy
  • Tensorflow
  • Keras

Dev tools

  • Git

Instructions

Follow instructions here to get your Python and VS Code environments setup. To confirm your python environment is setup properly, fire up a fresh new terminal, and enter "python" at the prompt. This should bring up the Python REPL. Make sure that the version number displayed is indeed 3.6.x, and not an older version of python you had before in your system.

Install the required python libraries by entering these commands in a terminal:

python -m pip install numpy
python -m pip install tensorflow
python -m pip install keras

If the above instructions does not work for you, you may use Anaconda instead:

  • Download Anaconda distrubtion for your platform from here.
  • Install tensorflow from your Anaconda Prompt following the intsructions here.
  • Install keras on top with python -m pip install keras

If Git isn't pre-installed on your system (Windows machine), download git for your platform from Git website.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment