Closed Mikaela closed 9 years ago
Regarding requirements.txt: the problem is PyQt4 is not available via pip, so it makes having a requirements.txt less useful, what do you think?
I suggest to install to the desktop install dir because if MUP is not installed that way, its .desktop file won't be found by the desktop. At least that's what I remembered: I just tried again and realized KDE Plasma found MUP even if it is installed to /usr/local
. Going to fix the instructions.
Fixes are in the dev branch, do they make sense to you?
Regarding requirements.txt: the problem is PyQt4 is not available via pip, so it makes having a requirements.txt less useful, what do you think?
Oh, I didn't think about those missing from pypi.
Fixes are in the dev branch, do they make sense to you?
I think so. Thanks :)
Just merged the changes in.
Hi, I saw your post on Planet Ubuntu and it looked interesting and found these two issues from README.
First, possibly separate issue at first: there is no
requirements.txt
file for pip to install those Python modules.And the second issue is that I don't think that the commands you suggest in README for installation are good.
/usr
should be only for things installed from apt//usr/local
instead which is in$PATH
by default. Usuallypython setup.py install
should install there directly without flags or without rootpython setup.py install --user
installs to$HOME/.local
which is inPYTHONPATH
by default.--install-layout=deb
is not familiar flag to me, but I assume that it also installs to/usr
or somewhere similar.