shajiyakhan1309 commented on issue #497: URL: https://github.com/apache/mahout/issues/497#issuecomment-2700604162
@vedansh-5 ### How I Fixed the Issue I ran into a problem where Jekyll wouldn’t start because of a conflict in my Gemfile. The error message said: `[!] There was an error parsing `Gemfile`: You cannot specify the same gem twice with different version requirements. You specified: tzinfo-data (~> 1.2025.1) and tzinfo-data (>= 0). Bundler cannot continue.` Here’s how I fixed it: 1. I Identified the Problem: - The error occurred because the tzinfo-data gem was listed twice in my Gemfile with different version requirements: gem 'tzinfo-data', '~> 1.2025.1' gem 'tzinfo-data', '>= 0' 2. I Removed the Duplicate: - I opened the Gemfile and deleted one of the tzinfo-data lines. I kept the more specific version requirement: `gem 'tzinfo-data', '~> 1.2025.1'` 3.I Reinstalled Dependencies: - After saving the Gemfile, I ran: `bundle install ` - This regenerated the Gemfile.lock and installed the correct gem versions. 4.I Tested the Fix: - Finally, I ran: `bundle exec jekyll serve` - Jekyll started successfully, and the issue was resolved! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@mahout.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org