Agregando Claude Code y Cline al Entorno.

This commit is contained in:
2026-02-02 04:38:12 +00:00
parent e21865d1cb
commit e56fc539f7
7 changed files with 62 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Installing Python
# Update package list
sudo apt update
# Install Python 3 and pip
sudo apt install -y python3-pip
# Verify Python installation
python3 -V
# Finished installing Python