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.

Linux + Ubuntu + Django + Apache

Last updated at Posted at 2019-08-22

#Linux종류
##ubuntu

  • 데비안계열
  • 설치간단
  • 초심자용

##CentOS

  • 유료 리눅스인 레드햇을 상표권만 제거
  • 안정적이고 레드햇의 기술을 무료로 사용할 수 있다.

#ubuntu + Django + Apache2 + mod_Wsgi 설치
##1. ubuntu

  • LTS(Long Term Service) : 지원기간 5년, 다른버전은 6~9개월마다 업그레드 권장
  • Desktop 버전 다운
  • iso 파일을 DVD로 구워 설치 > 윈도우 기본 기능으로 컨버팅

##2. django

  • 파이썬으로 만들어진 무료 오픈소스 웹 애플리케이션 프레임워크

  • Linux에 기본탑제

qiita.rb
# 버전확인
$ python3 --version
Python 3.6.1

# 버전선택설치
$ sudo apt install python3.6
  • 에디터 설치

  • 장고설치하기

      1. 가상환경(Virtual environment)
qiita.rb
# home 디렉토리 아래 작업폴더생성
$ mkdir djangogirls
$ cd djangogirls

# myenv 라는 이름의 가상환경 만들기
$ python3 -m venv myvenv

# 가상환경 실행
$ source myvenv/bin/activate

##2.1. ダウンロード

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?