LoginSignup
1
1

More than 5 years have passed since last update.

Windows10ではじめるcygwin

Posted at

まずはCygwinをインストール

  1. https://www.cygwin.com/ から「setup-x86_64.exe」をダウンロード。
  2. 「setup-x86_64.exe」をインストール。パッケージを選ぶのがめんどくさいのでフルインストール(5時間くらいかかった...)。
    フルインストールにすると各プログラミン言語やtmuxなど最初からすべて入った状態から始められるので楽!

「.bashrc」がホームディレクトリに作成されない場合は「.bash_profile」をホームディレクトリに作成して以下を記述。

.bash_profile
if [ -f $HOME/.bashrc ]; then
source $HOME/.bashrc
fi
1
1
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
1