You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hui Zhou edited this page Jun 12, 2026
·
2 revisions
Git Installation
Git is only required if you want to get PyAEDT/PyEDB development version.
Linux
Compile Git locally
mkdir -p ~/.local/src ~/.local/bin
cd ~/.local/src
curl -LO https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.44.0.tar.gz
tar xzf git-2.44.0.tar.gz
cd git-2.44.0
make configure
./configure --prefix=$HOME/.local
make && make install