{"id":1041,"date":"2019-10-02T09:46:42","date_gmt":"2019-10-02T14:46:42","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1041"},"modified":"2019-10-02T09:46:42","modified_gmt":"2019-10-02T14:46:42","slug":"how-to-install-wagtail-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/","title":{"rendered":"How to Install Wagtail on Ubuntu 18.04"},"content":{"rendered":"<p>In this tutorial, we will show you how to Install Wagtail on Ubuntu 18.04.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1047\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/setting-up-wagtail-cms-ubuntu18.04-vps.png\" alt=\"\" width=\"136\" height=\"80\" \/>Wagtail is a free, fast, elegant, open source CMS written in Python and built using the Django web framework for developing dynamic apps and websites. Wagtail is excellent for creating blogs and other websites that let you present your ideas to the world through a fast and good-looking webpage. The install process won&#8217;t take long, so let&#8217;s get started with the installation.<\/p>\n<p><!--more--><\/p>\n<h2>Requirements:<\/h2>\n<ul>\n<li>For the purposes of this tutorial, we will be using an <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 18.04 VPS<\/a>.<\/li>\n<li>Full SSH root access or a user with sudo privileges is also required.<\/li>\n<\/ul>\n<h2>Step 1: Log in via SSH and Update the System<\/h2>\n<p>Log in to your Ubuntu 18.04 VPS using SSH as the root user (or as a user account with sudo privileges)<\/p>\n<pre>$ ssh root@&lt;span style=&quot;color: #ff0000;&quot;&gt;IP_Address&lt;\/span&gt; -p &lt;span style=&quot;color: #ff0000;&quot;&gt;Port_number&lt;\/span&gt;<\/pre>\n<p>Don&#8217;t forget to replace &#8220;<span style=\"color: #ff0000;\">IP_Address<\/span>&#8221; and &#8220;<span style=\"color: #ff0000;\">Port_number<\/span>&#8221; with their respective values.<\/p>\n<p>You can check whether you have the proper Ubuntu version installed on your server with the following command:<\/p>\n<pre>$ lsb_release -a<\/pre>\n<p>You should get this output:<\/p>\n<pre>Distributor ID: Ubuntu\r\nDescription:    Ubuntu 18.04.1 LTS\r\nRelease:        18.04\r\nCodename:       bionic<\/pre>\n<p>Once you are logged in, run the following command to update all installed packages to the latest available version:<\/p>\n<pre>apt-get update &amp;&amp; apt upgrade<\/pre>\n<p>This maximizes compatibility and ensures that everything will work properly once installed.<\/p>\n<h2>Step 2: Install Python 3 and Pip 3<\/h2>\n<p>Installing Wagtail really only has one main prerequisite in terms of installed software: Python. We need to install Python 3 and pip 3 onto our server before Wagtail can be used. To do this, run the following command:<\/p>\n<pre>$ apt-get install python3 python3-pip<\/pre>\n<p>That should install the requirements you need to get Wagtail installed on Ubuntu 18.04<\/p>\n<p>To verify if Python 3 has been successfully installed, you can run the following command:<\/p>\n<pre>$ python3 -V<\/pre>\n<p>Output:<\/p>\n<pre>Python 3.6.7<\/pre>\n<p>And to verify if pip3 is installed, you can execute this:<\/p>\n<pre>$ pip3 -V<\/pre>\n<p>Output:<\/p>\n<pre>pip 9.0.1 from \/usr\/lib\/python3\/dist-packages (python 3.6)<\/pre>\n<h2>Step 3: Install Wagtail<\/h2>\n<p>Run the following command to download and install Wagtail using Pip3 into your home directory:<\/p>\n<pre>cd ~\/\r\npip3 install wagtail<\/pre>\n<p>That should get Wagtail installed and ready to use.<\/p>\n<h2>Step 4: Create a Wagtail App<\/h2>\n<p>Now we can create a new Wagtail project. For this tutorial, we are going to create the app in the home directory. You can do this elsewhere if it&#8217;s more convenient for you.<\/p>\n<p>Run the following commands to create a new project called &#8220;<span style=\"color: #ff0000;\">myproject<\/span>&#8220;:<\/p>\n<pre>cd ~\/\r\nwagtail start &lt;span style=&quot;color: #ff0000;&quot;&gt;myproject&lt;\/span&gt;\r\ncd &lt;span style=&quot;color: #ff0000;&quot;&gt;myproject&lt;\/span&gt;\r\npip3 install -r requirements.txt\r\npython3 manage.py migrate\r\n<\/pre>\n<p><strong>NOTE:\u00a0<\/strong>This will add a new directory for our project called <code>myproject<\/code>. You can name this according to your needs.<\/p>\n<p>Before we proceed, run the following command to create a Wagtail superuser account. This account will be used to access the Wagtail back-end portal.<\/p>\n<pre>python3 manage.py createsuperuser<\/pre>\n<p>That should prompt you to create a superuser account:<\/p>\n<pre>Username (leave blank to use &#039;root&#039;): admin\r\nEmail address: admin@&lt;span style=&quot;color: #ff0000;&quot;&gt;your_domain.com&lt;\/span&gt;\r\nPassword: &lt;span style=&quot;color: #ff0000;&quot;&gt;admin_password&lt;\/span&gt;\r\nPassword (again): &lt;span style=&quot;color: #ff0000;&quot;&gt;admin_password&lt;\/span&gt;\r\nSuperuser created successfully.<\/pre>\n<p>Make sure to use a suitably strong password that will keep your backend secure.<\/p>\n<h2>Step 5: Start the Wagtail server<\/h2>\n<p>To start up and run the Wagtail server, run the following command:<\/p>\n<pre>python3 manage.py runserver 0.0.0.0:8000<\/pre>\n<p>You will now be able to access the application in your preferred web browser at <code>http:\/\/server_domain_or_IP:8000<\/code><\/p>\n<p>You should see the Wagtail welcome page. It should look similar to the one below:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1043\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/Wagtail.png\" alt=\"\" width=\"1833\" height=\"745\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/Wagtail.png 1833w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/Wagtail-470x191.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/Wagtail-768x312.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/Wagtail-970x394.png 970w\" sizes=\"(max-width: 1833px) 100vw, 1833px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>You can then access the Wagtail admin page and log in with your admin user at the following URL: <code>http:\/\/server_domain_or_IP:8000\/admin<\/code><\/p>\n<p>That should prompt you for the superuser account and password:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1044\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/SignIN.png\" alt=\"\" width=\"1923\" height=\"497\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/SignIN.png 1923w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/SignIN-470x121.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/SignIN-768x198.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/SignIN-970x251.png 970w\" sizes=\"(max-width: 1923px) 100vw, 1923px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>When you log in successfully, you will see a beautiful dashboard where you can add your content.<\/p>\n<figure id=\"attachment_1045\" aria-describedby=\"caption-attachment-1045\" style=\"width: 1909px\" class=\"wp-caption aligncenter\"><img decoding=\"async\" class=\"size-full wp-image-1045\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/Wagtail_admin.png\" alt=\"\" width=\"1919\" height=\"1011\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/Wagtail_admin.png 1919w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/Wagtail_admin-470x248.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/Wagtail_admin-768x405.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/Wagtail_admin-970x511.png 970w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><figcaption id=\"caption-attachment-1045\" class=\"wp-caption-text\">The Wagtail Admin Dashboard<\/figcaption><\/figure>\n<p>&nbsp;<\/p>\n<h2>Step 6: Setting up a Reverse Proxy<\/h2>\n<p>In order to access your Wagtail application through the use your domain name, and without the port number in the URL, we need to set up Apache as a reverse proxy.<\/p>\n<p>First, we will need to enable some additional proxy modules for Apache. You can do this with the following commands:<\/p>\n<pre>a2enmod proxy\r\na2enmod proxy_http<\/pre>\n<p>Once this is done, open a new configuration file using nano (or your favorite text editor):<\/p>\n<pre>nano \/etc\/apache2\/sites-available\/&lt;span style=&quot;color: #ff0000;&quot;&gt;your_domain.conf&lt;\/span&gt;<\/pre>\n<p>Add the following lines:<\/p>\n<pre>&amp;lt;VirtualHost *:80&amp;gt;\r\n    ServerName &lt;span style=&quot;color: #ff0000;&quot;&gt;&lt;code&gt;your_domain.com&lt;\/code&gt; &lt;\/span&gt; ServerAlias &lt;span style=&quot;color: #ff0000;&quot;&gt;&lt;code&gt;www.your_domain.com&lt;\/code&gt;&lt;\/span&gt; ProxyRequests Off &amp;lt;Proxy *&amp;gt; Order deny,allow Allow from all &amp;lt;\/Proxy&amp;gt; ProxyPass \/ &lt;code&gt;http:\/\/&lt;span style=&quot;color: #ff0000;&quot;&gt;your_domain.com&lt;\/span&gt;:8000\/&lt;\/code&gt; ProxyPassReverse \/ &lt;code&gt;http:\/\/&lt;span style=&quot;color: #ff0000;&quot;&gt;your_domain.com&lt;\/span&gt;:8000\/&lt;\/code&gt; &amp;lt;Location \/&amp;gt; Order allow,deny Allow from all &amp;lt;\/Location&amp;gt; &amp;lt;\/VirtualHost&amp;gt;<\/pre>\n<p>Run the following command to enable the new virtual host:<\/p>\n<pre>ln -s \/etc\/apache2\/sites-available\/&lt;span style=&quot;color: #ff0000;&quot;&gt;your_domain.conf&lt;\/span&gt; \/etc\/apache2\/sites-enabled\/&lt;span style=&quot;color: #ff0000;&quot;&gt;your_domain.conf&lt;\/span&gt;<\/pre>\n<p>Remember to replace your \u2018<span style=\"color: #ff0000;\">your_domain.com<\/span>\u2019 with your actual registered domain name that&#8217;s set up to point to your server&#8217;s IP address. Save the changes and restart the Apache web server for the changes to take effect:<\/p>\n<pre>service apache2 restart<\/pre>\n<p>That\u2019s it. If you followed all of the instructions properly you can now access your Wagtail CMS using your domain name and no specified port number.<\/p>\n<h2>Step7: Install an SSL Certificate<\/h2>\n<p>This is an optional step \u2013 please follow this step if you want to install a free SSL certificate from Let\u2019s Encrypt on your domain. This will ensure that all users are securely connected to your server.<\/p>\n<pre>apt install python3-certbot-apache<\/pre>\n<p>Once installed, run the following command to install an SSL certificate. You will be asked a few questions to help configure it properly. You don\u2019t have to create a new Apache virtual host \u2013 <code>certbot<\/code> will configure it for you.<\/p>\n<pre>certbot<\/pre>\n<p>You have successfully installed Wagtail on your Ubuntu 18.04 VPS and you should be able to access it at <code>https:\/\/your_domain.com<\/code>.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1048\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/excellent-support-and-hosting-cloud-vps-wagtail-setup-ubuntu.png\" alt=\"\" width=\"136\" height=\"80\" \/>Of course, if you are one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Cloud VPS Hosting<\/a> customers, you don\u2019t have to install Wagtail CMS on your Ubuntu VPS \u2013 simply ask our admins, sit back, and relax. Our admins will install Wagtail CMS on Ubuntu 18.04 for you immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS.<\/span>\u00a0<\/strong>If you liked this post about <strong>how to install Wagtail CMS on your Ubuntu 18.04 VPS<\/strong>, please share it with your friends on the social networks using the share shortcuts, or simply leave a comment in the comments section. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to Install Wagtail on Ubuntu 18.04. Wagtail is a free, fast, elegant, open source CMS written in Python and built using the Django web framework for developing dynamic apps and websites. Wagtail is excellent for creating blogs and other websites that let you present your ideas to &#8230; <a title=\"How to Install Wagtail on Ubuntu 18.04\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/\" aria-label=\"More on How to Install Wagtail on Ubuntu 18.04\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1046,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[],"class_list":["post-1041","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Wagtail on Ubuntu 18.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will show you how to Install Wagtail on Ubuntu 18.04. Wagtail is a free, fast, elegant, open source CMS written in Python and built\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Wagtail on Ubuntu 18.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will show you how to Install Wagtail on Ubuntu 18.04. Wagtail is a free, fast, elegant, open source CMS written in Python and built\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2019-10-02T14:46:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-wagtail-on-ubuntu18.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"360\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Wagtail on Ubuntu 18.04\",\"datePublished\":\"2019-10-02T14:46:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/\"},\"wordCount\":874,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-wagtail-on-ubuntu18.04.jpg\",\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/\",\"name\":\"How to Install Wagtail on Ubuntu 18.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-wagtail-on-ubuntu18.04.jpg\",\"datePublished\":\"2019-10-02T14:46:42+00:00\",\"description\":\"In this tutorial, we will show you how to Install Wagtail on Ubuntu 18.04. Wagtail is a free, fast, elegant, open source CMS written in Python and built\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-wagtail-on-ubuntu18.04.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-wagtail-on-ubuntu18.04.jpg\",\"width\":750,\"height\":360},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-wagtail-on-ubuntu-18-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Wagtail on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Wagtail on Ubuntu 18.04 | LinuxCloudVPS Blog","description":"In this tutorial, we will show you how to Install Wagtail on Ubuntu 18.04. Wagtail is a free, fast, elegant, open source CMS written in Python and built","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Wagtail on Ubuntu 18.04 | LinuxCloudVPS Blog","og_description":"In this tutorial, we will show you how to Install Wagtail on Ubuntu 18.04. Wagtail is a free, fast, elegant, open source CMS written in Python and built","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2019-10-02T14:46:42+00:00","og_image":[{"width":750,"height":360,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-wagtail-on-ubuntu18.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Wagtail on Ubuntu 18.04","datePublished":"2019-10-02T14:46:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/"},"wordCount":874,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-wagtail-on-ubuntu18.04.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/","name":"How to Install Wagtail on Ubuntu 18.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-wagtail-on-ubuntu18.04.jpg","datePublished":"2019-10-02T14:46:42+00:00","description":"In this tutorial, we will show you how to Install Wagtail on Ubuntu 18.04. Wagtail is a free, fast, elegant, open source CMS written in Python and built","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-wagtail-on-ubuntu18.04.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-wagtail-on-ubuntu18.04.jpg","width":750,"height":360},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-wagtail-on-ubuntu-18-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Wagtail on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1041","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1041"}],"version-history":[{"count":3,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1041\/revisions"}],"predecessor-version":[{"id":1050,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1041\/revisions\/1050"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1046"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1041"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1041"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1041"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}