django

역사적으로 파이썬 개발자는 가상 환경을 구성 virtualenv하거나 사용했습니다 pyenv. 그러나 2017 년에 유명한 Python 개발자 Kenneth Reitz 가 공식적으로 권장되는 Python 패키징 도구 인 Pipenv 를 출시 했습니다 .

$ pip3 install pipenv
$ cd ~/Desktop
$ mkdir django
$ cd django
$ pipenv install django

$ pipenv shell
(django-JmZ1NTQw) $ django-admin startproject test_project .
(django-JmZ1NTQw) $ python manage.py runserver
(django-JmZ1NTQw) $ exit'


----------
(helloworld) $ git remote add origin https://<USER>@bitbucket.org/<USER>/hello-world.git
(helloworld) $ git push -u origin master
(helloworld) $ git push -u origin +master