Agregando Claude Code y Cline al Entorno.
This commit is contained in:
7
custom-scripts/01_setup_bash.sh
Executable file
7
custom-scripts/01_setup_bash.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
# Setup PATH for local binaries
|
||||
|
||||
# Agregar PATH a ~/.bashrc para persistencia
|
||||
if ! grep -q 'export PATH="$HOME/.local/bin:$PATH"' ~/.bashrc; then
|
||||
echo 'export PATH="$HOME/.local/bin:$PATH"' | sudo tee -a ~/.bashrc
|
||||
fi
|
||||
16
custom-scripts/04_install_python_libraries.sh
Executable file
16
custom-scripts/04_install_python_libraries.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
# Installing Python libraries
|
||||
|
||||
# Update pip
|
||||
pip install --upgrade pip
|
||||
|
||||
# Install Python libraries
|
||||
pip install pandas numpy matplotlib requests
|
||||
|
||||
# Verify installations
|
||||
python3 -c "import pandas; print('Pandas installed')"
|
||||
python3 -c "import numpy; print('Numpy installed')"
|
||||
python3 -c "import matplotlib; print('Matplotlib installed')"
|
||||
python3 -c "import requests; print('Requests installed')"
|
||||
|
||||
# Finished installing Python libraries
|
||||
4
custom-scripts/05_install_claude_code.sh
Executable file
4
custom-scripts/05_install_claude_code.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
# Installing Claude Code
|
||||
curl -fsSL https://claude.ai/install.sh | bash
|
||||
|
||||
Reference in New Issue
Block a user