1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Termuxにvscodeでリモート開発環境を作る

Posted at

概要

AndroidマシンでTermuxを動かしてvscodeを使ったリモート開発ができる環境を作ります。
Androidアプリの開発環境ではありません。

やること

  1. Termuxとopensshのインストール
  2. ubuntu環境のインストール
  3. sshでつないだときにubuntu環境に自動ログインする
  4. pythonの場合

Termuxとopensshのインストール

F-DROIDをインストールしてから、F-DROIDでTermuxをインストールする。
この記事の設定1までやればいよい。
https://pc.watch.impress.co.jp/docs/column/nishikawa/1409411.html

ubuntu環境のインストール

proot-distroでやる。
このページを参考に
https://www.lisz-works.com/entry/termux-ubuntu-for-proot-distro

sshでつないだときにubuntu環境に自動ログインする

sshd.confにForceCommandを書いてsshでつないできたらubuntuに自動ログインする。
proot-distro内で$TERMを参照しているけど設定されていないので、ここで設定しちゃいます。

ForceCommand export TERM=xterm-256color; proot-distro login ubuntu

pythonの場合

poetryを使用する方向けの内容です。

poetryのインストール

poetryをインストールする前に、distutilsが無いので先にインストールします。
poetry自体は普通にcurl ・・・ | python -でインストールできます。

apt install python3-distutils
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?