Martiela Freitas
banner
martiela.bsky.social
Martiela Freitas
@martiela.bsky.social
🇧🇷 Mathematics, Genetics & Mol. Biology
🇺🇸 Postdoc at Antunes's Lab
👩🏽‍💻 Structural biology applied to cancer research.
🎨 Wet colours artist.
Follow the link to install kubetcl
kubernetes.io/docs/tasks/t...

Run "kubectl version" to verify that kubectl is installed correctly.
March 22, 2025 at 6:09 AM
The Kubernetes command-line tool, kubectl, allows you to run commands against Kubernetes clusters. It's a client that communicates with a Kubernetes API server.
March 22, 2025 at 6:09 AM
Kubernetes is a distributed system of servers that host software applications, and you interact with it primarily through your local command line - it's not a programming language.
March 22, 2025 at 6:09 AM
If the HPC requires submitting jobs for software installation, write the installation commands in a script and submit it using 'sbatch' or the relevant scheduler.
January 21, 2025 at 9:33 PM

# If you need, install additional tools such as plotting libraries
conda install matplotlib numpy scipy -c conda-forge
January 21, 2025 at 9:32 PM
# Install MDAnalysis and its dependencies from the conda-forge channel
conda install -c conda-forge mdanalysis mdanalysis-data

# After installation, verify that MDAnalysis works:
python -c "import MDAnalysis as mda; print(mda.__version__)"
January 21, 2025 at 9:31 PM