Google Colab에서 VSCode(codeserver)를 사용하기 위한 3줄

7533 단어 jupyternotebookvscode
colabcode는 단 3줄로 Google Colab/Kaggle에서 VSCode(codeserver)를 사용할 수 있게 해주는 멋진 Python 패키지입니다.


abhishekkrthakur / colabcode


Google Colab 또는 Kaggle Notebooks에서 VSCode(코드 서버) 실행





ColabCode





설치


$ 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는 VSCode에 액세스하기 위한 ngrok URL을 표시합니다.

이 3줄에 대해 조금 설명하겠습니다.

PyPI 패키지 설치



앞서 언급했듯이 Google Colab에서 VSCode를 사용하려면 colabcode를 설치해야 합니다. 첫 번째 줄은 패키지를 설치하는 것입니다.
꽤 직설적 인.

!pip install colabcode


colabcode를 통해 VSCode 실행



파이썬을 조금 알고 있다면 이 두 줄은 꽤 이해하기 쉽습니다. from xxx import yyy는 패키지를 가져오기 위한 것입니다. 그런 다음 두 번째는 인스턴스를 만드는 것입니다. 끝났어.

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는 필수이며 위의 인수는 선택 사항입니다. Colab에서 VSCode를 공유하려면 password가 유용할 수 있습니다.

사용하는 방법



파이썬





보시다시피 우리가 해야 할 일은 왼쪽 모서리 아이콘에서 Terminal를 여는 것입니다. 그런 다음 python test.py를 실행합니다.
편집기 테마를 변경하려면 Gear 아이콘을 클릭하고 테마를 선택하면 됩니다.



nodejs



아시다시피 Google Colab는 파이썬용입니다. 그러나 VSCode를 사용하면 nodejs를 사용할 수 있습니다. nodejs 버전이 오래되었습니다(v8.11.3). 그러나 nodejs로 무언가를 빠르게 하고 싶다면 이것이 유용할 수 있습니다.

좋은 웹페이지 즐겨찾기