Metadata-Version: 2.1
Name: VSColab
Version: 0.1.1
Summary: SSH into Colab Notebooks and use VSCode for remote development
Home-page: https://github.com/anusikh/VSColab
Author: Anusikh Panda
Author-email: anusikh2001@gmail.com
License: MIT License
Keywords: VSColab,Colab,VS
Platform: linux
Platform: unix
Requires-Python: >3.6.0
Description-Content-Type: text/markdown


# VSColab
Use Google Colab GPU's and TPU's via an ssh connection locally in your device.

[![license](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)
![python version](https://img.shields.io/badge/python-3.6%2C3.7%2C3.8-blue?logo=python)


### Installation:
Installation is easy!
```
$ pip install VSColab
```
Using this package we can ssh into the Google Colab instance and also perform remote developement using VSCode.

### Getting Started:
- Install the package
- Use the `Connect()` function to create an Ngrok tunnel, by passing a password string as a parameter.
- Then Enter the Authentication Key (which can be obtained from:https://dashboard.ngrok.com/auth/your-authtoken) and press Enter.
- Use the `VSconfig()` function to get the contents for the VSCode Config file, by passing the URL of the Ngrok tunnel (which can be obtained from: https://dashboard.ngrok.com/status/tunnels)
- To kill the tunnel, use the `Kill()` function.

### Colab starter notebook: 
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/abhishekkrthakur/colabcode/blob/master/colab_starter.ipynb)

### Remote development with VSCode:
- First create a tunnel using the `Connect()` function.
- Use the `VSconfig()` function to get the contents for the VSCode Config file, by passing the URL of the Ngrok tunnel (which can be obtained from: https://dashboard.ngrok.com/status/tunnels) and copy the Output.
- Then install the **remote-ssh** plugin in VSCode, and click the button at the bottom left corner. 
- Then select the __Open Configuration Files..__ option and enter the copied text there.
- Then select the __Connect to Host..__ option and Enter the password when asked.
- __Viola!! A fully functional Development environment powered by the GPU's and TPU's of Google Colab__


### Note:
If the command `$ nvidia-smi` doesn't work in the ssh session, simple type :
```
export LD_PRELOAD=/usr/lib64-nvidia/libnvidia-ml.so
```
Then press Enter.

