Skip to content

your1name/colabcode-fix-update

 
 

Repository files navigation

ColabCode (fix-update)

license PyPI version python version

Installation

$ pip install git+https://github.com/your1name/colabcode-fix-update

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
  --version            Choose the version of VSCode to install, default is latest version

Else, you can do the following:

Step 1: Add Auth token of ngrok

$ from pyngrok import ngrok
$ ngrok.set_auth_token("YOUR_TOKEN") 

You can get token at: ngrok.com

Step 2: Import and use

Default is use vscode latest of coder. You can check version at here

# 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.
#             Note that there is no password by default!
# - mount_drive: True or False to mount your Google Drive
# - version: Choose the version of vscode, default 
$ ColabCode(port=10000, password="yourpass", mount_drive=True, version="4.92.2")

License

MIT

About

Run VSCode (codeserver) on Google Colab or Kaggle Notebooks

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 58.5%
  • Jupyter Notebook 40.7%
  • Makefile 0.8%