diff --git a/setup/programs/others/python3-libs/packages.sh b/setup/programs/others/python3-libs/packages.sh index 6d4361f..53227db 100644 --- a/setup/programs/others/python3-libs/packages.sh +++ b/setup/programs/others/python3-libs/packages.sh @@ -8,3 +8,8 @@ function install { python_packages=("numpy" "matplotlib" "scipy" "seaborn" "django" "torch" "torchvision" "torchaudio" "networkx" "Faker" "torch-cluster" "torch-geometric" "torch-scatter" "torch-sparse" "torch-spline-conv" "tqdm" "yapf" "yt-dlp" "scikit-learn" "scikit-image" "pandas" "python3-lsp-server[all]" "pynvim" "pylsp-mypy" "python-lsp-isort" "python-lsp-black" "pylint" "flake8" "hydra" "lightning" "virtualenv") + +for package in $python_packages +do + pip3 install ${package} +done