This guide provides instructions for deploying the Smart AI Resume Analyzer application in various environments, with a focus on resolving Chrome webdriver issues.
- Python 3.7 or higher
- Chrome browser installed
- pip for installing dependencies
-
Clone the repository
-
Install dependencies:
pip install -r requirements.txt
-
Run the application using the Python script:
python run_app.py
This script will automatically set up chromedriver and start the application.
Alternatively, you can run the batch file:
startup.bat
-
Clone the repository
-
Install dependencies:
pip install -r requirements.txt
-
Run the setup script to install the correct chromedriver:
python setup_chromedriver.py
-
Run the application:
streamlit run app.py
Alternatively, you can use the startup script which handles both chromedriver setup and application startup:
chmod +x startup.sh ./startup.sh
# Update package list
sudo apt update
# Install Chrome dependencies
sudo apt install -y wget unzip fontconfig fonts-liberation libasound2 libatk-bridge2.0-0 libatk1.0-0 libatspi2.0-0 libcairo2 libcups2 libdrm2 libgbm1 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libxcomposite1 libxdamage1 libxfixes3 libxkbcommon0 libxrandr2 xdg-utils
# Download and install Chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install -y ./google-chrome-stable_current_amd64.deb
rm google-chrome-stable_current_amd64.deb
# Verify installation
google-chrome --version
# Add Chrome repository
sudo tee /etc/yum.repos.d/google-chrome.repo <<EOF
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
EOF
# Install Chrome
sudo yum install -y google-chrome-stable
# Verify installation
google-chrome --version
After installing Chrome, deploy the application:
- Clone the repository
- Install dependencies:
pip install -r requirements.txt
- Make the startup script executable and run it:
chmod +x startup.sh ./startup.sh
- Python 3.7 or higher
- Chrome browser installed
- pip for installing dependencies
-
Clone the repository
-
Install dependencies:
pip install -r requirements.txt
-
Run the application using the Python script:
python run_app.py
This script will automatically set up chromedriver and start the application.
When deploying to Streamlit Cloud, you need to ensure Chrome is available. Our application includes multiple fallback mechanisms to handle this.
- Push your code to a GitHub repository
- Create a new app in Streamlit Cloud pointing to your repository
- Make sure your
requirements.txt
includes all necessary dependencies:selenium>=4.10.0
webdriver-manager>=4.0.0
chromedriver-autoinstaller>=0.6.2
- Ensure the
packages.txt
file is in your repository with:chromium chromium-driver libglib2.0-0 libnss3 libgconf-2-4 libfontconfig1 xvfb wget unzip
If you encounter issues with Chrome on Streamlit Cloud:
- Check the logs for specific error messages
- Try adding a custom command to run the setup script before the app starts:
- In the Streamlit Cloud settings, add a "Main file path" of
run_app.py
instead ofapp.py
- In the Streamlit Cloud settings, add a "Main file path" of
For Docker deployment, you need to include Chrome in your Docker image.
FROM python:3.9-slim
# Install Chrome
RUN apt-get update && apt-get install -y \
wget \
gnupg \
unzip \
xvfb \
libglib2.0-0 \
libnss3 \
libgconf-2-4 \
libfontconfig1 \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list \
&& apt-get update \
&& apt-get install -y google-chrome-stable \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Set up working directory
WORKDIR /app
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Make scripts executable
RUN chmod +x startup.sh setup_chromedriver.py
# Expose port for Streamlit
EXPOSE 8501
# Run the startup script
CMD ["python", "run_app.py"]
This usually indicates that Chrome cannot be started. Ensure:
- Chrome is installed
- You have the correct permissions
- You're using the
--no-sandbox
option in headless environments
This indicates a version mismatch between Chrome and chromedriver:
- Run the
setup_chromedriver.py
script to install the matching chromedriver version - The script automatically detects your Chrome version and downloads the compatible chromedriver
This is a permission issue:
- Try running the application with administrator privileges
- Ensure the user has write permissions to the installation directory
- Use the
setup_chromedriver.py
script which installs chromedriver in the user's home directory
This is common in containerized environments:
- Add
--disable-dev-shm-usage
to Chrome options (already included in our setup) - Ensure you're using
--no-sandbox
in Docker/container environments
If you encounter issues on Windows:
- Make sure Chrome is installed in the standard location
- Try running the application as administrator
- Use the
run_app.py
script which handles setup automatically - Check Windows Defender or antivirus software that might be blocking chromedriver