colabcode
is an awesome python package since it allows us to use VSCode(codeserver) on Google Colab/Kaggle with only 3 lines.
abhishekkrthakur / colabcode
Run VSCode (codeserver) on Google Colab or Kaggle Notebooks
ColabCode
Installation
$ pip install colabcode
Run code server on Google Colab or Kaggle Notebooks.
Getting Started
ColabCode also has a command-line script. So you can just run colabcode
from command line.
colabcode -h
will give the following:
usage: colabcode [-h] --port PORT [--password PASSWORD] [--mount_drive]
ColabCode: Run VS Code On Colab / Kaggle Notebooks
required arguments:
--port PORT the port you want to run code-server on
optional arguments:
--password PASSWORD password to protect your code-server from unauthorized access
--mount_drive if you use --mount_drive, your google drive will be mounted
Else, you can do the following:
# import colabcode
$ from colabcode import ColabCode
# run colabcode with by default options.
$ ColabCode()
# ColabCode has the following arguments:
# - port: the port you want to run code-server on, default 10000
# - password: password to protect your code server from being accessed by someone else.
#
…3lines
!pip install colabcode
from colabcode import ColabCode
ColabCode(port=10000)
Tha's it. jupyter notebook
will show you a ngrok
url to access VSCode.
Let me explain about those 3 lines a little bit.
Install PyPI package
As I mentioned, we need to install colabcode
to use VSCode on Google Colab. The first line is to install the package.
Pretty straight forward.
!pip install colabcode
Run VSCode via colabcode
If you know python a little bit, these 2 lines are pretty easy to understand. from xxx import yyy
is for importing a package. Then, the second is to create an instance. Done lol.
from colabcode import ColabCode
ColabCode(port=10000)
I would like to introduce a couple of parameters we can use to you.
ColabCode()
can take a couple of arguments.
From https://github.com/abhishekkrthakur/colabcode/
optional arguments:
--password PASSWORD password to protect your code-server from unauthorized access
--mount_drive if you use --mount_drive, your google drive will be mounted
As you can see, port
is required and the above arguments are optional. If you want to share your VSCode on Colab, maybe password
may be useful.
How to Use
python
As you can see, what we will need to do is to open Terminal
from the left corner icon. Then execute python test.py
.
If you want to change the editor theme, you can do it by clicking Gear
icon and select a theme.
nodejs
As you know, Google Colab
is for python. However, with VSCode you can use nodejs. The version of nodejs is out of date, v8.11.3. But if you want to do something quickly with nodejs, this may be useful.
Top comments (0)