LoFa
Add
Login
Search
Title:
Tag1 for Path:
a single word in lower characters
Tag2 for Path:
List of alternative single tags:
one or many words in lower characters, separated by comma or space
Text:
<p>This pamphlet describes the installation of Django 3 web framework on FreeBSD 12. Required software such as Python, Nginx and PostgreSQL are already installed.</p> https://docs.djangoproject.com/en/3.0/intro/install/ </p> <pre> <code> cd /usr/local/www/ mkdir django3 cd django3 pip install Django==3.0 </code> <samp> Requirement already satisfied: Django==3.0 in /usr/local/lib/python3.6/site-packages (3.0) Requirement already satisfied: sqlparse>=0.2.2 in /usr/local/lib/python3.6/site-packages (from Django==3.0) (0.3.0) Requirement already satisfied: asgiref~=3.2 in /usr/local/lib/python3.6/site-packages (from Django==3.0) (3.2.3) Requirement already satisfied: pytz in /usr/local/lib/python3.6/site-packages (from Django==3.0) (2019.3) </samp> <code> python3.6 <samp> Python 3.6.9 (default, Aug 22 2019, 01:16:05) [GCC 4.2.1 Compatible FreeBSD Clang 6.0.1 (tags/RELEASE_601/final 335540)] on freebsd12 Type "help", "copyright", "credits" or "license" for more information. >>> <kbd>import django</kbd> >>> <kbd>print(django.get_version())</kbd> 3.0 >>> <kdb>exit()</kbd> </code> </pre>
URL:
Operation:
Delete
Update
Insert
Template Prompt