0
0

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.

PATHを通す意味

Last updated at Posted at 2020-07-18

PATHを通す意義について

プログラミングでJAVAやC言語の環境構築をしていると、よく目にするのがPATHを通してください、というのがあります。 よく意味が分からずにやってしまっていたのですが、今回その意味についてまとめてみました。

PATHの通し方

①画面左下の虫眼鏡にcontを入力します。 ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/133983/9d1c864b-bd4c-852b-0af5-0db507a093e5.png) ②青くなっているコントロールパネルをクリックします。 ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/133983/4070e7e9-adbc-1507-a2e7-ed6eb080ac43.png) ③左上部の緑字のシステムとセキュリティをクリックします。 ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/133983/bf59f266-06c6-a2c2-68a1-f5dc618963c4.png) ④上から三番目の緑字のシステムをクリックします。 ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/133983/a3de3f18-909b-3e75-641f-5d7fd247a139.png) ⑤左メニューのシステムの詳細設定をクリックします ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/133983/d9636c78-2b53-f71b-5165-ee060e9c98c2.png) ⑥この画面が表示されるので「環境変数(N)...」をクリックします。 ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/133983/ac84c26f-1cf3-a831-cb43-a788f14c9472.png) ⑦ユーザーの環境変数のPathが薄い青になっている状態で編集をクリックする。 ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/133983/48058172-5a9a-a1e4-3890-f74ecf93b7fa.png) ⑧新規(N)ボタンをクリック ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/133983/80016917-0773-08e1-86a8-a0b579a679ef.png) ⑨今回私の場合はC:\MinGW\binを追加してOKを押下する ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/133983/0358e6f2-0f0a-91bc-13bd-13ace9cc7c38.png) ⑩後はすべてYESにしてPATHを通すが終了です

何故PATHを通すのか

PATHを通すのは、より簡略化するためである 例えばC:\Windows\System32\notepad.exeというメモ帳がある。 これだと、コンピュータ側でCドライブのwindowsフォルダの中のSystem32の中のnotepad.exeという探し方になる。 しかし、ここでC:\Windows\System32というPATHを通しておくと、すぐに見つけることができるし、書き方もC:\Windows\System32\notepad.exeではなくてnotepad.exeでだけでC:\Windows\System32\も補ってくれるようになる。
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?