-
Notifications
You must be signed in to change notification settings - Fork 2
install help
Different environments open up opportunities for "bugs" or things that simply need to be tended to, in order for Resgen to do it's thing.
(Note that none of these are directly related to Resgen, but are environment-specific, such as running out-of-date components)
These are some "bugs" ran into during initial testing:
..OpenSSL version is out of date..
Your OS is plausibly out of date. Run any pending updates offered by Apple.
If the message persists after upgrading, target the OpenSSL application for updates. In Terminal, run the following:
brew upgrade opensslThen, clear out any old versions, with:
brew cleanup openssl..Bundler could not find compatible versions for gem "nokogiri"..
Your Ruby or Ruby Gems version is probably out of date. Try running any pending updates on your operating system. Failing that, the following should help:
- Delete
Gemfile.lockif it exists - Run
bundle updateinside the Resgen directory from your Terminal
Error still persists? Try:
gem install nokogiriinside the Resgen directory from your Terminal
Under most circumstances, you won't need to go this far, but the options are here, in case you have a unique case. Debian / Ubuntu-based systems:
sudo apt-get install build-essential patch ruby-dev zlib1g-dev liblzma-devCentOS / RHEL systems:
sudo yum install -y gcc ruby-devel zlib-devel
sudo yum install -y rubygem-nokogiriMacOS
gem update --system
xcode-select --install
gem install nokogiriTo reset your installation:
- Remomove the
applied/folder - Remove the
finished_resume/folder - Open
config.ymland remove the entire block (including):
# auto-generated values by resgen - delete everything below to reset your installation:
- Delete
Gemfile.lock - Comment out all dependencies from
Gemfile(restore after bundle clean is ran) - In your terminal, in the
resgendirectory, run:bundle clean(read the warning!)
Still having issues? Please open an issue