파이썬 썸네일형 리스트형 Make Django Server on Centos7 # install python3.6]$ sudo yum update -y]$ sudo yum install -y yum-utils]$ sudo yum install -y https://centos7.iuscommunity.org/ius-release.rpm]$ sudo yum install -y python36u python36u-pip python36u-devel ]$ mkdir [project_name] # make python3 virtual environment]$ python3.6 -m venv py3 # activate virtual environment]$. py3/bin/activate # install django(py3) ]$ pip install --upgrade pip(py3) ]$.. 더보기 [Python] pip install error fatal error: Python.h: No such file or directory after executing pip install, get this error messages..then install python-dev packages ]$ sudo dnf install python3-develor]$ sudo dnf install python-devel in ubuntu]$ sudo apt-get install python3-dev 더보기 [Python] 파일 읽고 쓰기 # _*_ coding: utf8 _*_ with open({file_path}, {file_mode}) as fp:fp.write('Hello World')fp.close() 파일 모드r - 파일 읽기만 할 경우w - 파일에 내용 쓸때a - 기존 파일에 새로운 내용 추가시 더보기 이전 1 다음