Installation
To begin installation, first download the GitHub repository as a .zip file located here to your Downloads folder
Install the plugin
Unzip the repository into your Downloads folder and copy deepLearning.jar over to the plugins folder inside the SeqGeq installation folder
Configure Python environment
Windows
- Uninstall any version of python that already exists on your machine
- Get a python 3.5.3 64 bit here (must be 64 bit) check the box for Add Python 3.5 to PATH
- Download numpy here
- Download scipy here
- Open command prompt. To open command prompt press the windows key, type "cmd", then press enter.
- Copy and paste each of the following commands one at a time into the command prompt window. Press enter to run a command.
pip3 install %USERPROFILE%\Downloads\numpy-1.13.0+mkl-cp35-cp35m-win_amd64.whl
pip3 install %USERPROFILE%\Downloads\scipy-0.19.1-cp35-cp35m-win_amd64.whl
pip3 install --upgrade tensorflow
pip3 install keras
pip3 install sklearn
pip3 install matplotlib
pip install h5py
- Finally, copy contents the scripts folder from the Deep-Learning-Plugin GitHub repository into %USERPROFILE%/AppData/Local/Programs/Python/Python35/Lib
MacOS
- Uninstall any version of python that already exists on your machine
- Get python a 3.5.3 64 bit here (must be 64 bit)
- Download numpy here
- Download scipy here
- Open the terminal application. To open the terminal application open your Applications folder, then open the Utilities folder. Inside the Utilities folder, you will find the terminal application.
- Copy and paste each of the following commands one at a time into the terminal window. Press enter to run a command
pip3 install ~/Downloads/numpy-1.13.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
pip3 install ~/Downloads/scipy-0.19.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
pip3 install --upgrade tensorflow
pip3 install keras
pip3 install sklearn
pip3 install matplotlib
pip install h5py
cd ; cp -r ./Downloads/Deep-Learning-Plugin-master/scripts/ ../../Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5