Skip to content

Commit c20c8cc

Browse files
committed
install keras, tensorflow, theano Deep learning/Machine Learning library
1 parent 9547506 commit c20c8cc

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

keras.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
- hosts: local
2+
become: yes
3+
tasks:
4+
- name: install the package, force upgrade
5+
pip:
6+
name: keras
7+
state: latest
8+
extra_args: --upgrade

tensorflow.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
- hosts: local
2+
become: yes
3+
tasks:
4+
- name: install the Tensorflow, force upgrade
5+
pip:
6+
name: tensorflow
7+
state: latest

theano.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
- hosts: local
2+
become: yes
3+
tasks:
4+
- name: install the Theano, force upgrade
5+
pip:
6+
name: git+git://github.com/Theano/Theano.git
7+
state: latest
8+
extra_args: --upgrade --no-deps

0 commit comments

Comments
 (0)