$ git clone https://github.com/yyuu/pyenv.git ~/.pyenv
$ export PYENV_ROOT="$HOME/.pyenv"
$ export PATH="$PYENV_ROOT/bin:$PATH"
$ eval "$(pyenv init -)"
Schauen Sie sich die neueste Python an
$ pyenv install --list
Installieren Sie die neueste Python
$ pyenv install 3.8.1
$ pyenv local 3.8.1
$ python -V
Python 3.8.1
$ pip install pipenv
Bei der Installation mit pipenv wird normalerweise "~ / .local / share / virtualenvs /" angezeigt, es sollte jedoch direkt unter dem Projekt in ".venv" angezeigt werden. .venv
wird automatisch erstellt, wenn Sie die virtuelle Umgebung betreten.
$ echo 'export PIPENV_VENV_IN_PROJECT=1' >> ~/.bash_profile
Gibt die Version von Python an, die in der virtuellen pipenv-Umgebung verwendet werden soll
$ pipenv --python 3.8
Betreten Sie die virtuelle Umgebung.
$ pipenv shell
django
│── Pipfile
│── Pipfile.lock
└── .venv
$ pipenv install django django-bootstrap4
$ pipenv install --dev django-debug-toolbar django-webpack-loader #Nur Entwicklungsumgebung
Standardmäßig kann pipenv keine Pre-Release-Pakete installieren. Sie müssen die Einstellungen wie folgt zu Ihrer Pipfile hinzufügen:
Pipfile
[pipenv]
allow_prereleases = true
Erstellen Sie ein Projekt in der virtuellen Umgebung von pipenv
$ django-admin startproject config .
django
│── config
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
│── Pipfile
│── Pipfile.lock
├── .venv
└── manage.py
django
├── config
│ ├── __init__.py
│ ├── settings
│ │ ├── __init__.py
│ │ ├── base.py #Allgemeine Einstellungen
│ │ ├── production.py #Einstellungen, die Sie nur auf die Produktionsumgebung anwenden möchten
│ │ ├── development.py #Einstellungen, die Sie nur auf die Entwicklungsumgebung anwenden möchten
│ │ └── test.py #Einstellungen, die Sie nur auf den Test anwenden möchten
│ ├── urls.py
│ └── wsgi.py
│── Pipfile
│── Pipfile.lock
├── .venv
└── manage.py
Das Verzeichnis hat sich geändert, ändern Sie also das BASE_DIR
in base.py
base.py
- BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+ BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
production.py
#Einstellungen, die Sie nur auf die Produktionsumgebung anwenden möchten
from .base import *
DEBUG = True
development.py
#Einstellungen, die Sie nur auf die Entwicklungsumgebung anwenden möchten
from .base import *
DEBUG = False
python manage.py startapp test_app
django
├── config
│── Pipfile
│── Pipfile.lock
├── .venv
│── manage.py
└── test_app
├── __init__.py
├── admin.py
├── apps.py
├── migrations
├── models.py
├── tests.py
└── views.py
base.py
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [os.path.join(BASE_DIR, "templates")],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
django
├── config
│── Pipfile
│── Pipfile.lock
├── .venv
│── manage.py
│── templates
│ └── test_app
└── test_app
├── __init__.py
├── admin.py
├── apps.py
├── migrations
├── models.py
├── tests.py
└── views.py
https://fclef.jp/20191103/ https://studygyaan.com/django/best-practice-to-structure-django-project-directories-and-files
Recommended Posts