- Windows 10 / Ubuntu / MacOS
- Visual Studio Code
- Python 3.6
- Python
- Pylint
- Numpy
- Tensorflow
- Keras
- Git
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.