"윈도우 Python 3 설치"의 두 판 사이의 차이

 
(사용자 4명의 중간 판 32개는 보이지 않습니다)
1번째 줄: 1번째 줄:
{{다른뜻|Python3 pip 설치}}
{{테스트|윈도우 7, 윈도우 8, 파이썬 3}}
{{테스트|윈도우 7, 윈도우 8, 파이썬 3}}
==개요==
;윈도우 Python 3 설치
;윈도우 Python 3 설치
;윈도우 pip 설치
;윈도우 파이썬 설치
;윈도우 파이썬 설치


==다운로드 및 설치==
==방법 1: winget으로 설치==
* Python 3, [[IDLE]], [[pip]], 문서가 함께 설치됨 (인스톨러와 동일)
<syntaxhighlight lang='powershell'>
winget install -e --id Python.Python.3.12
</syntaxhighlight>
 
==방법 2: 인스톨러 설치==
* Python 3, [[IDLE]], [[pip]], 문서가 함께 설치됨
 
===다운로드 및 설치===
*http://www.python.org/downloads/ 접속
*http://www.python.org/downloads/ 접속
*[Donwload Python 3.5.1] 클릭하여 python-3.5.1.exe 파일 다운로드(27.4MB)
*[Donwload Python 3.x.x] 클릭하여 python-3.x.x.exe 파일 다운로드 (약 29MB)
[[파일:InstallPythonForWindows1.png|800px]]
[[파일:InstallPythonForWindows1.png|800px]]
*python-3.5.1.exe 실행
 
*"Install Python 3.5.1 (32-bit)" --- Install Now 버튼을 눌러 설치를 시작한다.
*python-3.x.x.exe 실행
*"Install Python 3.x.x (32-bit)" --- {{체크마크}} Add Python 3.x to PATH ★ --- Install Now 버튼을 눌러 설치를 시작한다.
[[파일:InstallPythonForWindows2.png]]
[[파일:InstallPythonForWindows2.png]]


==실행==
* Disable path length limit 클릭
*{{키|Win}} --- IDLE (Python 3.5 32-bit) {{Enter}}
 
<source lang='python3'>
[[파일:Python3-Disable path length limit.png]]
 
* Close 클릭
[[파일:Python3-Setup was successful.png]]
 
===확인: CMD===
*{{키|Win}} --- cmd {{Enter}}
<syntaxhighlight lang='doscon'>
C:\Users\jmnote>python -V
Python 3.6.3
</syntaxhighlight>
<syntaxhighlight lang='doscon'>
C:\Users\jmnote>pip -V
pip 9.0.1 from c:\users\jmnote\appdata\local\programs\python\python36-32\lib\site-packages (python 3.6)
</syntaxhighlight>
<syntaxhighlight lang='doscon'>
C:\Users\jmnote>where python
C:\Users\jmnote\AppData\Local\Programs\Python\Python36-32\python.exe
</syntaxhighlight>
<syntaxhighlight lang='doscon'>
C:\Users\jmnote>where pip
C:\Users\jmnote\AppData\Local\Programs\Python\Python36-32\Scripts\pip.exe
</syntaxhighlight>
 
===확인: IDLE===
*{{키|Win}} --- IDLE (Python 3.x 32-bit) {{Enter}}
<syntaxhighlight lang='python3'>
Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:38:48) [MSC v.1900 32 bit (Intel)] on win32
Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:38:48) [MSC v.1900 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
Type "copyright", "credits" or "license()" for more information.
>>>  
>>>  
</source>
</syntaxhighlight>
* 작업표시줄의 IDLE 아이콘 우클릭 --- 이 프로그램을 작업표시줄에 고정
* 작업표시줄의 IDLE 아이콘 우클릭 --- 이 프로그램을 작업표시줄에 고정
<source lang='python3'>
<syntaxhighlight lang='python3'>
>>> print('Hello World')
>>> print('Hello World')
Hello World
Hello World
25번째 줄: 64번째 줄:
안녕 친구들
안녕 친구들
>>>  
>>>  
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[파이썬]]
{{z컬럼3|
 
* [[파이썬]]
==주석==
* [[파이썬 기초]]
<references/>
* [[리눅스 파이썬 설치]]
* [[맥OS python3 설치]]
* [[윈도우 주피터랩 설치]]
* [[윈도우 아나콘다 설치]]
* [[윈도우 PyCharm 설치]]
* [[윈도우 주피터 노트북 설치]]
}}


[[분류: python]]
[[분류: python]]

2025년 1월 6일 (월) 11:04 기준 최신판

  다른 뜻에 대해서는 Python3 pip 설치 문서를 참조하십시오.

1 개요[ | ]

윈도우 Python 3 설치
윈도우 pip 설치
윈도우 파이썬 설치

2 방법 1: winget으로 설치[ | ]

  • Python 3, IDLE, pip, 문서가 함께 설치됨 (인스톨러와 동일)
winget install -e --id Python.Python.3.12

3 방법 2: 인스톨러 설치[ | ]

  • Python 3, IDLE, pip, 문서가 함께 설치됨

3.1 다운로드 및 설치[ | ]

InstallPythonForWindows1.png

  • python-3.x.x.exe 실행
  • "Install Python 3.x.x (32-bit)" --- ✅ Add Python 3.x to PATH ★ --- Install Now 버튼을 눌러 설치를 시작한다.

InstallPythonForWindows2.png

  • Disable path length limit 클릭

Python3-Disable path length limit.png

  • Close 클릭

Python3-Setup was successful.png

3.2 확인: CMD[ | ]

  • Win --- cmd Enter
C:\Users\jmnote>python -V
Python 3.6.3
C:\Users\jmnote>pip -V
pip 9.0.1 from c:\users\jmnote\appdata\local\programs\python\python36-32\lib\site-packages (python 3.6)
C:\Users\jmnote>where python
C:\Users\jmnote\AppData\Local\Programs\Python\Python36-32\python.exe
C:\Users\jmnote>where pip
C:\Users\jmnote\AppData\Local\Programs\Python\Python36-32\Scripts\pip.exe

3.3 확인: IDLE[ | ]

  • Win --- IDLE (Python 3.x 32-bit) Enter
Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:38:48) [MSC v.1900 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>>
  • 작업표시줄의 IDLE 아이콘 우클릭 --- 이 프로그램을 작업표시줄에 고정
>>> print('Hello World')
Hello World
>>> print('안녕 친구들')
안녕 친구들
>>>

4 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}