Quickstart

Getting started with Environments

  • Login to NetBook Cloud

  • Click on Environments in the left-side panel

  • Following are some of the environments provided by NetBook

  • Click on any of the above to get the details

Custom Environment

To create a custom environment, follow the steps:

  1. Click on Add New in top-right corner

2. Select an appropriate utility from the dropdown

3.Cloud-hosted image

If you are familiar with Docker based development and want to directly link a docker image hosted in docker hub, you can use this option.

You can select the project to which you want to link this image to. Give it a unique name. The Repository url is the URL you find for a docker image in the docker hosted service. For example for Pytorch docker in docker hub this how the docker pull command works :

//docker pull pytorch/pytorch

You need to use pytorch/pytorch as the repository url. In the tag section, you can give the tag for the image. You can find the list of available tags on the docker hub url. If you don't mention anything, by default, 'latest' tag image will be pulled

4. If you are not familiar with docker based development and use either Conda or virtual env. We support both environment.yaml and requirements.txt files. In these cases, you can use, read from repo option, where you can provide the github repository url and we find the dockerfile, environment.yaml or requirements.txt file in this order to create a docker image for you

5. In order to make the environment creation much easier, we have a UI based package selection option under the custom image option where you can directly pick the packages and we created the environments for you.

All the project environments will be saved as docker images in NetBook's docker hub account. When you connect your cloud accounts, these will be saved in the respectively Cloud's docker repository. AWS ECR in AWS cloud

Last updated