Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 441 Bytes

install_theano_at_win.md

File metadata and controls

36 lines (23 loc) · 441 Bytes

Install theano at windows

  • Create virtual env by anaconda
conda create --name envtheano python=3.5
  • Active the virtual environment
activate envtheano
  • Install scipy
conda install scipy
  • Install theano
pip install theano
  • Then, you can choose to install sklearn, keras and jupyter
conda install scikit-learn
pip install keras
pip install jupyter