From 335b68252d9179eda061b6a66513827e4a7b3b60 Mon Sep 17 00:00:00 2001 From: araison Date: Mon, 22 Jan 2024 00:49:37 +0100 Subject: [PATCH] Fixing bug --- setup/programs/others/python3-libs/packages.sh | 5 +++++ 1 file changed, 5 insertions(+) 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