Programming/PYTHON

Python 3.6 install (windows, linux yum install)

i독 2017. 8. 9. 14:49

 Windows - https://www.python.org/downloads/


Add Python 3.6 to PATH 를 체크해놓는게 나는 편하더라


Win + R -> cmd




Linux(centos7) / yum install

----------------------------------------------------------------------------------

yum install -y https://centos7.iuscommunity.org/ius-release.rpm

yum install -y python36u python36u-libs python36u-devel python36u-pip

python -V

----------------------------------------------------------------------------------

  2.7.5 버전으로 확인 됌

----------------------------------------------------------------------------------

ln -s /bin/python3.6 /bin/python3

unlink /bin/python

ln -s /bin/python3 /bin/python

ln -s /bin/pip3.6 /bin/pip

----------------------------------------------------------------------------------

 3.6.2 설치 완료 (2017/08/09 기준 최신)


출처: http://depository.tistory.com/2 [depository]


'Programming > PYTHON' 카테고리의 다른 글

SyntaxError:(unicode err) 'unicodeescape'  (0) 2020.12.14
Python editor - SublimeText3 config  (0) 2017.08.09