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 3 years have passed since last update.

Ubuntuでよく使うコマンドリスト

Last updated at Posted at 2020-07-24

参考記事
https://note.com/10mohi6/n/n273bad25c378
https://www.cnblogs.com/csu-lmw/p/12910481.html
https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-uswgi-and-nginx-on-ubuntu-18-04

#コマンドリスト
sankou(https://support.kagoya.jp/gput/manual/driver/index.html)

#sudo apt-get update
sudo apt-get update
sudo apt-get upgrade

#日付を確認
date

#日本語ロケールを変更する
localectl status
sudo localectl set-locale LANG=ja_JP.UTF-8
localectl status#確認

#Anacondaのインストール
wget https://repo.anaconda.com/archive/Anaconda3-5.2.0-Linux-x86_64.sh
bash Anaconda3-5.2.0-Linux-x86_64.sh

yes
yes
no#Do you wish to proceed with the installation of Microsoft VSCode? [yes|no]

sudo nano ~/.bashrc
最後の行に追加
export PATH=~/anaconda3/bin:$PATH
反映
source ~/.bashrc

#仮想Python作成
conda create -n tf36 python=3.6
source activate tf36
//uwsgiを使う場合
conda install -c conda-forge uwsgi

#日本語対応
sudo apt -y install fonts-takao language-pack-ja fcitx fcitx-mozc
sudo update-locale LANG=ja_JP.UTF-8 LANGUAGE="ja_JP:ja"
sudo im-config -n fcitx
sudo reboot

#git install
sudo apt-get install git
dpkg -l git#確認
git config --global user.name
git config --global user.email

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?