{"title":"Συχνές Ερωτήσεις: Εγκατάσταση","version":"4.1","locale":"el","docname":"faq/install","url":"/el/4.1/faq/install/","canonical":"https://djangodocs.dev/el/4.1/faq/install/","summary":"Πως ξεκινώ; Link to this heading # Κατεβάστε τον κώδικα . Εγκαταστήστε το Django (δείτε το άρθρο οδηγός εγκατάσταση ). Περιηγηθείτε μέσα στον οδηγό μας . Δείτε το…","html":"<h1>Συχνές Ερωτήσεις: Εγκατάσταση<a class=\"heading-anchor\" href=\"#faq-installation\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h1>\n<section id=\"how-do-i-get-started\">\n<h2>Πως ξεκινώ;<a class=\"heading-anchor\" href=\"#how-do-i-get-started\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<ol class=\"arabic simple\">\n<li><p><a class=\"reference external\" href=\"https://www.djangoproject.com/download/\">Κατεβάστε τον κώδικα</a>.</p></li>\n<li><p>Εγκαταστήστε το Django (δείτε το άρθρο <a class=\"reference internal\" href=\"/el/4.1/intro/install/\"><span class=\"doc\">οδηγός εγκατάσταση</span></a>).</p></li>\n<li><p>Περιηγηθείτε μέσα στον <a class=\"reference internal\" href=\"/el/4.1/intro/tutorial01/\"><span class=\"doc\">οδηγό μας</span></a>.</p></li>\n<li><p>Δείτε το υπόλοιπο <a class=\"reference internal\" href=\"/el/4.1/\"><span class=\"doc\">documentation</span></a> του Django και <a class=\"reference external\" href=\"https://www.djangoproject.com/community/\">ρωτήστε την κοινότητα</a> αν έχετε κάποιο πρόβλημα.</p></li>\n</ol>\n</section>\n<section id=\"what-are-django-s-prerequisites\">\n<h2>Ποια είναι τα απαιτούμενα για το Django;<a class=\"heading-anchor\" href=\"#what-are-django-s-prerequisites\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Django requires Python. See the table in the next question for the versions of\nPython that work with each version of Django. Other Python libraries may be\nrequired for some use cases, but you’ll receive an error about them as they’re\nneeded.</p>\n<p>For a development environment – if you just want to experiment with Django –\nyou don’t need to have a separate web server installed or database server.</p>\n<p>Django comes with its own <a class=\"reference internal\" href=\"/el/4.1/ref/django-admin/#django-admin-runserver\"><code class=\"xref std std-djadmin docutils literal notranslate\"><span class=\"pre\">lightweight</span> <span class=\"pre\">development</span> <span class=\"pre\">server</span></code></a>.\nFor a production environment, Django follows the WSGI spec, <span class=\"target\" id=\"index-0\"></span><a class=\"pep reference external\" href=\"https://peps.python.org/pep-3333/\"><strong>PEP 3333</strong></a>, which\nmeans it can run on a variety of web servers. See <a class=\"reference internal\" href=\"/el/4.1/howto/deployment/\"><span class=\"doc\">Deploying Django</span></a> for more information.</p>\n<p>Django runs <a class=\"reference external\" href=\"https://www.sqlite.org/\">SQLite</a> by default, which is included in Python installations.\nFor a production environment, we recommend <a class=\"reference external\" href=\"https://www.postgresql.org/\">PostgreSQL</a>; but we also officially\nsupport <a class=\"reference external\" href=\"https://mariadb.org/\">MariaDB</a>, <a class=\"reference external\" href=\"https://www.mysql.com/\">MySQL</a>, <a class=\"reference external\" href=\"https://www.sqlite.org/\">SQLite</a>, and <a class=\"reference external\" href=\"https://www.oracle.com/\">Oracle</a>. See <a class=\"reference internal\" href=\"/el/4.1/ref/databases/\"><span class=\"doc\">Supported Databases</span></a> for more information.</p>\n</section>\n<section id=\"what-python-version-can-i-use-with-django\">\n<span id=\"faq-python-version-support\"></span><h2>Ποια έκδοση της Python να χρησιμοποιήσω με το Django;<a class=\"heading-anchor\" href=\"#what-python-version-can-i-use-with-django\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<div class=\"table-scroll\" role=\"region\" tabindex=\"0\" aria-label=\"Table\"><table class=\"docutils align-default\">\n<thead>\n<tr class=\"row-odd\"><th class=\"head\"><p>Django έκδοση</p></th>\n<th class=\"head\"><p>Python εκδόσεις</p></th>\n</tr>\n</thead>\n<tbody>\n<tr class=\"row-even\"><td><p>2.2</p></td>\n<td><p>3.5, 3.6, 3.7, 3.8 (added in 2.2.8), 3.9 (added in 2.2.17)</p></td>\n</tr>\n<tr class=\"row-odd\"><td><p>3.1</p></td>\n<td><p>3.6, 3.7, 3.8, 3.9 (added in 3.1.3)</p></td>\n</tr>\n<tr class=\"row-even\"><td><p>3.2</p></td>\n<td><p>3.6, 3.7, 3.8, 3.9, 3.10 (added in 3.2.9)</p></td>\n</tr>\n<tr class=\"row-odd\"><td><p>4.0</p></td>\n<td><p>3.8, 3.9, 3.10</p></td>\n</tr>\n<tr class=\"row-even\"><td><p>4.1</p></td>\n<td><p>3.8, 3.9, 3.10, 3.11 (added in 4.1.3)</p></td>\n</tr>\n</tbody>\n</table>\n</div>\n<p>Για κάθε έκδοση της Python, μόνο η τελευταία micro release (A.B.C) υποστηρίζεται επισήμως. Μπορείτε να βρείτε την τελευταία micro version για κάθε σειρά της Python στην <a class=\"reference external\" href=\"https://www.python.org/downloads/\">επίσημη σελίδα της</a>.</p>\n<p>Typically, we will support a Python version up to and including the first\nDjango LTS release whose security support ends after security support for that\nversion of Python ends. For example, Python 3.3 security support ended\nSeptember 2017 and Django 1.8 LTS security support ended April 2018. Therefore\nDjango 1.8 is the last version to support Python 3.3.</p>\n</section>\n<section id=\"what-python-version-should-i-use-with-django\">\n<h2>Ποια έκδοση της Python θα πρέπει να χρησιμοποιήσω με το Django;<a class=\"heading-anchor\" href=\"#what-python-version-should-i-use-with-django\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Since newer versions of Python are often faster, have more features, and are\nbetter supported, the latest version of Python 3 is recommended.</p>\n<p>You don’t lose anything in Django by using an older release, but you don’t take\nadvantage of the improvements and optimizations in newer Python releases.\nThird-party applications for use with Django are free to set their own version\nrequirements.</p>\n</section>\n<section id=\"should-i-use-the-stable-version-or-development-version\">\n<h2>Να χρησιμοποιώ τη σταθερή έκδοση ή την αναπτυξιακή;<a class=\"heading-anchor\" href=\"#should-i-use-the-stable-version-or-development-version\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Γενικά, αν χρησιμοποιείτε κώδικα ο οποίος θα βγει στην παραγωγή (δηλαδή στο internet) θα πρέπει να χρησιμοποιείτε την σταθερή έκδοση (stable release). Το Django project εκδίδει μια πλήρης σταθερή διανομή κάθε εννέα μήνες περίπου, όπου κάθε μια περιέχει διορθώσεις σφαλμάτων (bugfixes). Αυτές οι σταθερές διανομές περιέχουν το API για το οποίο εγγυόμαστε τη λειτουργία του. Αν γράφετε κώδικα με βάση τις σταθερές διανομές δεν θα έχετε κανένα πρόβλημα όταν αναβαθμίζετε σε κάποια επόμενη επίσημη διανομή, αρκεί βέβαια να διαβάζετε τις ανακοινώσεις της καινούργιας διανομής (release notes) γιατί μερικά πράγματα μπορεί αν έχουν αλλάξει.</p>\n</section>","rootId":"faq-installation","toc":[{"title":"Πως ξεκινώ;","anchor":"how-do-i-get-started","children":[]},{"title":"Ποια είναι τα απαιτούμενα για το Django;","anchor":"what-are-django-s-prerequisites","children":[]},{"title":"Ποια έκδοση της Python να χρησιμοποιήσω με το Django;","anchor":"what-python-version-can-i-use-with-django","children":[]},{"title":"Ποια έκδοση της Python θα πρέπει να χρησιμοποιήσω με το Django;","anchor":"what-python-version-should-i-use-with-django","children":[]},{"title":"Να χρησιμοποιώ τη σταθερή έκδοση ή την αναπτυξιακή;","anchor":"should-i-use-the-stable-version-or-development-version","children":[]}],"breadcrumbs":[{"docname":"faq/index","title":"Συχνές Ερωτήσεις για το Django","url":"/el/4.1/faq/"}],"prev":{"docname":"faq/general","title":"Συχνές Ερωτήσεις: Γενικά","url":"/el/4.1/faq/general/"},"next":{"docname":"faq/usage","title":"Συχνές Ερωτήσεις: Χρησιμοποιώντας το Django","url":"/el/4.1/faq/usage/"},"formats":{"html":"/el/4.1/faq/install/","markdown":"/el/4.1/faq/install.md","json":"/el/4.1/faq/install.json"},"source":"https://github.com/django/django/blob/stable/4.1.x/docs/faq/install.txt","official":"https://docs.djangoproject.com/el/4.1/faq/install/","inVersions":["6.1","6.0","5.2","5.1","5.0","4.2","4.1","4.0","3.2","3.1","3.0","2.2","2.1","2.0","1.11","1.10"],"inLocales":["en","zh-hans","fr","ja","id","it","pt-br","ko","es","el","pl"]}