Is there any way to port a program like Apache Airflow which is installed in the WSL to another windows machine without the need to open the linux terminal ?
Thank you, Igor
Is there any way to port a program like Apache Airflow which is installed in the WSL to another windows machine without the need to open the linux terminal ?
Thank you, Igor
In your case you can install the Apache Airflow via python pip in your WSL subsystem and then copy all the files in the ~/.local/lib/python[your_python_version]/site-packages
and then you can zip it in order to transfer to another computer.
But note that if the Ubuntu version in the WSL subsystem of the second machine is different , that might cause some problems. Just make sure that the python's minor version is the same since the compatibility between the different minor versions of python isn't guaranteed.
You might need to install python-pip first.
Note : I haven't do it myself but it should work at least on the paper.
If anybody has a better solution , I'm glad to hear.