Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huydhn/ansible-jupyter-notebook
Ansible role to setup a Jupyter notebook, RStudio, and various other stuffs
https://github.com/huydhn/ansible-jupyter-notebook
ansible aws-ec2 jupyter-notebook rstudio
Last synced: 3 months ago
JSON representation
Ansible role to setup a Jupyter notebook, RStudio, and various other stuffs
- Host: GitHub
- URL: https://github.com/huydhn/ansible-jupyter-notebook
- Owner: huydhn
- License: mit
- Created: 2018-09-16T05:41:16.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-06T01:18:10.000Z (about 4 years ago)
- Last Synced: 2024-05-21T00:49:26.585Z (6 months ago)
- Topics: ansible, aws-ec2, jupyter-notebook, rstudio
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 6
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible jupyter-notebook
An Ansible role to setup a Jupyter notebook, rstudio, and various stuffs. This
currenly supports only Centos 7.Usage
-----
Installing Jupyter and RStudio locally:```
ansible-playbook -i inventory/example jupyter.yml --become-method sudo# The default password is `changeme'
ansible-playbook -i inventory/example jupyter.yml --become-method sudo -e 'jupyter_notebook_password=mysecret'
```Installing Jupyter and RStudio on an Amazon EC2 instance with tag
Name=jupyter-notebook:```
ansible-playbook -i inventory/aws jupyter.yml --become-method sudo# The default password is `changeme'
ansible-playbook -i inventory/aws jupyter.yml --become-method sudo -e 'jupyter_notebook_password=mysecret'
```Running the role with an Amazon EC2 instance requires the following
Python packages:```
pip install boto boto3
```