rohitashva's picture
Update setup.sh
9d0f633 verified
raw
history blame contribute delete
298 Bytes
#!/bin/bash
# Upgrade pip
pip install --upgrade pip
if [ -f requirements.txt ]; then
pip install -r requirements.txt
fi
pip install en_Resume_Matching_Keywords-any-py3-none-any.whl
# Verify installation
python -c "import en_Resume_Matching_Keywords; print('Package installed successfully')"