-
Notifications
You must be signed in to change notification settings - Fork 0
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
Trouble installing #34
Comments
@karrot42 Hi, welcome to the club of emacsers! No worries and no need to apologize. We've all been there, it can be overwhelming at first. The first way of installing produces this error because you don't have quelpa-use-package. You can install it like this: ;; install quelpa-use-package using quelpa
(quelpa
'(quelpa-use-package
:fetcher github
:repo "quelpa/quelpa-use-package"))
(require 'quelpa-use-package)
(setq use-package-ensure-function 'use-package-ensure-elpa) I'll add this to the README, so it won't cause problems like this. For the second installation way, you lack the dependencies and the first one to fall is request.el. I would go down the road of manual dependency installation only if the first way of doing it won't work (for some reason). Don't hesitate writing here till we won't get it work. |
This worked! Thank you! I'm having other problems (maybe due to evil mode?) that causes me not to be able to move beyond an answer and can't play the attached mp3 files, but I thin it's probably better to open up new issues with more details to tackle those problems... THANKS! |
Good to hear that the first step is over. I didn't check it with evil mode. With mp3 files, |
I'm using MacOS Mojave. My default .mp3 program is set to mpv. |
I use ;; Define simple audio player for EMMS
(define-emms-simple-player afplay '(file)
(regexp-opt '(".mp3" ".m4a" ".aac"))
"afplay")
(setq emms-player-list `(,emms-player-afplay)) maybe it will help :) |
When I start emacs. I believe I have emms installed.... but I'm not sure if there is some other dependency involved here. Edit: I don't have afplay installed (on my Mac), so that'd probably be a problem? |
If you have it installed you can simply add (require 'emms) to this file. Or add: (use-package emms
:ensure t) |
I double checked that emms is installed, and I got the standard error starting emacs that told me to try
There might be some mistakes in that error as I had to type it by hand. |
|
@karrot42 Hi, did you figure out the issue with |
I couldn't, though I didn't put much effort into it, and I'm not very able to figure things out. If there's anything you want me try, I'll do it. I hope this process is helping with bug(?) fixing, but please don't spend too much energy on getting this to work for me. |
I'm not a developer, and I'm fairly new/terrible at Emacs, so I apologize if this is stupid.
I tried the three ways of installation and failed every time. I'm using MacOS Mojave with emacports 26.2 emacs.
I installed
use-package
andquelpa
from the melpapackage-install
command and then addedto my .emacs file and got this error
Error (use-package): Failed to parse package memrise: use-package: Unrecognized keyword: :quelpa
I did
git clone https://github.com/SavchenkoValeriy/memrise.el.git
within my.emacs.d
directory and addedto my .emacs file and got this error
Error (use-package): memrise/:catch: Cannot open load file: No such file or directory, request
and finally I tried the direct method with the same git cloned directory by adding this to my .emacs file
and got the good ole'
I'm sure I'm missing something very dumb here, and I know you guys aren't trying to teach me how to use emacs, but maybe some other person in the future will have had this same problem because they, like me, have never installed anything in emacs without the use of MELPA.
The text was updated successfully, but these errors were encountered: