Setting up Apache-Airflow in Windows using WSL 2
<p>In the previous story, you learned to set up <strong>Ubuntu 20.04 on Windows 10</strong> as <strong>Linux Subsystem Distribution</strong>. In this article, I will walk you through the installation process of Apache Airflow in WSL 2 using a virtual environment.</p>
<p><img alt="" src="https://miro.medium.com/v2/resize:fit:700/0*AJtf6MQrM2MYYKZ1.png" style="height:345px; width:700px" /></p>
<h1>Installation of pip on WSL 2</h1>
<ul>
<li>To set up a virtual environment, we need to install a python package named <strong>virtualenv</strong>.</li>
<li>We will use the <strong>pip</strong> command for the same.</li>
<li>If the python-pip is not available in your Linux distribution, execute the following command in an Ubuntu terminal:</li>
</ul>
<pre>
username@desktop_name:~$ <strong>sudo apt install python3-pip
</strong>[sudo] password for username:</pre>
<ul>
<li>Type in the Linux password to proceed with the installation.</li>
</ul>
<h1>Installation of virtualenv package</h1>
<p>After successfully installing pip, you will now have to <strong>install the virtualenv</strong> package using the following command:</p>
<p><a href="https://medium.com/international-school-of-ai-data-science/setting-up-apache-airflow-in-windows-using-wsl-dbb910c04ae0"><strong>Read More</strong></a></p>