[note] Want to install the latest version from a GitHub repo using pip
devel
- stands for development
devel
- stands for developmentWhen using the apache/airflow:2.10.2 image to install packages from GitHub, a permission error may occur. The solution is to install git using the root user, then switch back to the airflow user to install the package.
1 | FROM apache/airflow:slim-2.10.2 |
The full name of PEX is Python Executable. This is an open-source tool for building a virtual environment to execute your Python code. However, be cautious when using PEX because it does not include a Python interpreter; thus, your computer must have a Python environment installed.