3つの線は、Google Coabの上でvscodeを使います


colabcode それは3つの行だけでGoogle Coab/Kaggle上でvscode(codeserver)を使用することができますので、素晴らしいPythonパッケージです.

アビシククラトゥク / コラコード


Google CoabまたはKaggleノートPCでvscodeを実行します


コラコード





インストール

$ pip install colabcode

Run code server on Google Colab or Kaggle Notebooks.

始める

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.
#

3ライン

!pip install colabcode
from colabcode import ColabCode
ColabCode(port=10000)
それはそうです.jupyter notebook あなたに見せますngrok vscodeにアクセスするURL.
その3行について少し説明しましょう.

パッケージのインストール


私が言及したように、我々はインストールする必要がありますcolabcode Google Coabでvscodeを使用する.最初の行はパッケージをインストールすることです.
かなりまっすぐ前方.
!pip install colabcode

経由でvscodeを実行する


Pythonを少し知っているなら、これらの2行はかなり分かりやすいです.from xxx import yyy パッケージのインポートです.次に、2番目のインスタンスを作成します.ド・ロール
from colabcode import ColabCode
ColabCode(port=10000)
私たちはあなたに使用できるパラメータのカップルをご紹介したいと思います.ColabCode() いくつかの引数を取ることができます.
から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
ご覧の通り.port が必要です.あなたがあなたのVSCodeをColabに共有したいならばpassword 役に立つかもしれません.

使い方


Python



ご覧の通り、我々がする必要があるものは開くことですTerminal 左コーナーのアイコンから.次に実行するpython test.py .
エディタのテーマを変更する場合は、クリックして行うことができますGear アイコンとテーマを選択します.

NODEJS


ご存じの通りGoogle Colab Python用です.しかし、vscodeでnodejsを使用できます.NODEJSのバージョンは、最新のv 8です.11.3 .しかし、あなたがnodejsで速く何かをしたいならば、これは役に立つかもしれません.