Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bbonkr/learn-django

장고를 배워요
https://github.com/bbonkr/learn-django

Last synced: 25 days ago
JSON representation

장고를 배워요

Awesome Lists containing this project

README

        

# learn-django

장고를 배워요.

[장고걸스 튜토리얼 (Django Girls Tutorial)](https://tutorial.djangogirls.org/ko/)

따라서 작성하니, 웹사이트가 생겼습니다.

### 가상환경

가상환경 작성

```bash
$ python -m venv devenv
```

가상환경 활성

```bash
$ ./devenv/Scripts/activate
```

pip 업데이트

```bash
$ python -m pip install --upgrade pip
```

### 패키지 목록

```bash
$ pip freeze > requirements.txt
```

### 패키지 설치

```bash
$ pip install -r ./requirements.txt
```