Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 642 Bytes

getting-started.rst

File metadata and controls

23 lines (13 loc) · 642 Bytes

Getting Started

Create an enviroment for the project using virtualenv. If you don't have it installed just run:

>>> $ pip install virtualenv

To create and activate an enviroment (called mnisnt) run:

>>> $ virtualenv mnisnt
>>> $ source mnisnt/bin/activate

Install general requirements by running:

>>> $ make requirements

Install TensorFlow following the turorial on their website

If you want to run the project notebooks istall Jupyter and Matplotlib by running:

>>> $ pip install jupyter
>>> $ pip install matplotlib