Created
April 14, 2017 14:23
-
-
Save mrdrozdov/e62e815338c1a37ab462c22b478cd84b to your computer and use it in GitHub Desktop.
Install theano
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create and Activate Conda Environment | |
conda create -n theano-2.7 python=2.7 | |
source activate theano-2.7 | |
# Install Theano | |
conda install numpy scipy mkl | |
conda install theano | |
# Install Other Dependencies | |
pip install qdarkstyle | |
pip install dominate | |
# Install PyQT | |
conda install pyqt=4 | |
# Install OpenCV | |
# Instructions from: | |
# https://solarianprogrammer.com/2016/11/29/install-opencv-3-with-python-3-on-macos/ | |
conda install anaconda-client | |
anaconda search -t conda opencv3 | |
conda install --channel https://conda.anaconda.org/menpo opencv3 | |
THEANO_FLAGS='device=gpu, floatX=float32, nvcc.fastmath=True' python iGAN_main.py --model_name outdoor_64 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment