-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add conda/mamba environment file for local deployment? #13
Comments
Found a good blog with an example workflow: https://hackmd.io/@AstrobioMike/jekyll-conda-setup
|
I guess that the devil is in the details I had to do this the last time I used jekyll with an IOOS Gemfile on Linux: conda env create --name JEKYLL compilers "ruby<3"
gem update --system
gem install sass-embedded -v 1.63.6
gem install jekyll
gem install bundler
bundle install
ln -s /home/filipe/micromamba/envs/JEKYLL/bin/ruby /home/filipe/micromamba/envs/JEKYLL/share/rubygems/bin/ruby
bundle exec jekyll serve --config _config.yml,_config_dev.yml --watch The main differences are:
|
Okay, so that's not as easy as I was hoping. If it's that complex, than maybe the environment file isn't worth the effort? Folks can just install to their OS directly, per our guidance here. |
The problem is the many layers of packages and managers. We use conda to install gems to install bundle :-/ |
I recently had to use a loaner laptop and needed to build out my environments again. As I was doing so, I thought that it would be helpful to have an environment just for docs and we could add that environment file to this repo (or one of the submodules).
Then the readme here would be:
Might be missing some key details.
The text was updated successfully, but these errors were encountered: