반응형

assoc 이용 Python 확장자 형식 확인 및 설정

assoc 명령어는 특정 확장자가 어떤 형식인지 설정할 수 있는 명령어로 assoc 명령어로 ".py" 확장자의 형식을 확인함 

>> assoc | findstr ".py"

없다면 아래의 명령어로 설정함

>> assoc .py=Python.File

 

ftype 명령어로 실행방법 확인 및 설정

ftype 명령어는 파일 타입의 실행 방법에 대해 설정할 수 있는 명령어로 ftype 명령어로 Python.File 혹은 assoc로 알아낸 타입의 실행 방법을 확인함 
>> ftype | findstr "python" 
없거나 수정이 필요한 경우 아래의 명령어로 설정함 
>> ftype Python.File= "C:\Users\%USERNAME%\AppData\Local\Programs\Python\Python<VERSION>\python.exe" "%1" %* 

".py" 확장자의 Python Script 파일을 더블 클릭하여 바로 실행되는 것을 확인함

 

반응형

+ Recent posts