Skip to content

Instantly share code, notes, and snippets.

@knishioka
Last active August 25, 2022 00:30
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knishioka/4578f62e82f90f958fb30da4db557078 to your computer and use it in GitHub Desktop.
Save knishioka/4578f62e82f90f958fb30da4db557078 to your computer and use it in GitHub Desktop.
コマンドラインからemacsのpackageのインストール
emacs --batch --eval "(require 'package)" \
--eval "(add-to-list 'package-archives '(\"melpa\" . \"https://melpa.org/packages/\") t)" \
--eval "(package-refresh-contents)" \
--eval "(package-initialize)" \
--eval "(package-install 'flymake-python-pyflakes))" \
--eval "(package-install 'guru-mode))" \
--eval "(package-install 'helm))"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment