mirror of
https://github.com/Hopiu/django-embed-video.git
synced 2026-03-16 21:30:23 +00:00
34 lines
559 B
ReStructuredText
34 lines
559 B
ReStructuredText
Installation & Setup
|
|
==============================================
|
|
|
|
Installation
|
|
##############################################
|
|
|
|
Use pip to install package:
|
|
|
|
::
|
|
|
|
pip install django-embed-video
|
|
|
|
|
|
If you want latest version, you may use Git. It is fresh, but unstable.
|
|
|
|
::
|
|
|
|
pip install git+https://github.com/yetty/django-embed-video.git
|
|
|
|
|
|
Setup
|
|
##############################################
|
|
|
|
Add ``embed_video`` to :py:data:`~django.settings.INSTALLED_APPS` in your Django
|
|
settings.
|
|
|
|
::
|
|
|
|
INSTALLED_APPS = (
|
|
...
|
|
|
|
'embed_video',
|
|
)
|
|
|