Last active
April 3, 2019 18:13
-
-
Save akhan4u/f604777c0f7a141eafdaa18a5ce06f46 to your computer and use it in GitHub Desktop.
Ansible playbook to install anaconda3 onto remote system.
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
--- | |
- hosts: "{{ host_name }}" | |
roles: | |
# Install python3 setup onto the remote system | |
- role: andrewrothstein.python3 | |
python3_pyenv: "3.6.5" | |
# Install Anaconda3 onto the remote system and install the listed packages as default | |
- role: andrewrothstein.anaconda3 | |
anaconda_install_packages: | |
- absl-py==0.1.13 | |
- astor==0.6.2 | |
- Flask==0.12.2 | |
- gast==0.2.0 | |
- grpcio==1.11.0 | |
- h5py==2.7.1 | |
- itsdangerous==0.24 | |
- Jinja2==2.10 | |
- Keras==2.2.2 | |
- numpy==1.16.2 | |
- protobuf==3.5.2 | |
- pathlib | |
- python-dotenv | |
- scikit-learn==0.19.1 | |
- scipy==1.0.1 | |
- tensorflow==1.7.0 | |
- Werkzeug==0.14.1 | |
- xgboost==0.71 | |
- pandas==0.23.4 | |
- matplotlib==2.2.3 | |
# - opencv_python==3.4.2.17 #INSTALL THE PACKAGE WITH PYTHON PIP | |
- gevent==1.3.5 | |
- greenlet==0.4.14 | |
- cudatoolkit==9.0 | |
- jupyter | |
- keras-gpu==2.2.4 | |
- nb_conda==2.2.1 | |
- nb_conda_kernels==2.2.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment