Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tranphuquy19/jupyter-notebook-template
https://github.com/tranphuquy19/jupyter-notebook-template
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tranphuquy19/jupyter-notebook-template
- Owner: tranphuquy19
- Created: 2021-09-08T11:44:13.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-08T17:56:57.000Z (about 3 years ago)
- Last Synced: 2023-03-03T15:38:24.438Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Jupyter notebook template
## Install Jupyter notebook
1. Require `virtualbox`, `vagrant` are installed
2. Create `Vagrantfile`, with below content:```ruby
Vagrant.configure("2") do |config|
config.vm.hostname = "jupyter.local"
config.vm.box = "tranphuquy19/jupyter-notebook-ubuntu-core"
config.vm.network "private_network", type: "dhcp"
config.vm.network "forwarded_port", guest: 8888, host: 8888config.vm.provider "virtualbox" do |v|
v.cpus = 1 # 1 CPU
v.memory = 2048 # 2GB RAM
end
end
```3. Start VM by run this command (in terminal or cmd): `vagrant up`
4. Open this URL: [http://localhost:8888](http://localhost:8888)**Note**:
- By default, Vagrant will share your project directory (the directory with the Vagrantfile) to `/vagrant`.
- Jupyter notebook working on `/vagrant` directory.