pinard / Pymacs

Emacs to Python interface
pymacs.progiciels-bpi.ca
GNU General Public License v2.0
359 stars 86 forks source link

FYI I made virtualenv wrapper for Emacs Lisp. It could help Pymacs installation problems. #52

Open tkf opened 11 years ago

tkf commented 11 years ago

I made virtualenv wrapper for Emacs Lisp to help installation of Emacs packages relying on Python modules: python-environment.el. I think it would help Pymacs installation.

You can just define a command like the following so that user can just do M-x pymacs-make-env to setup Python side of Pymacs.

(defun pymacs-make-env ()
  (interactive)
  (python-environment-run '("pip" "install" "Pymacs")))

I am requesting for comment before fixing the API. If you are interested, please come in: https://github.com/tkf/emacs-python-environment/issues/1

PythonNut commented 9 years ago

I would really love this, as it would greatly simplify the move to ELPA/MELPA/Marmalade, and allow an easy installation.