summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authors7hoang2020-07-17 17:00:21 -0400
committers7hoang2020-07-17 19:41:44 -0400
commit2178a10bb6883319d71b2567ac4767cfa78bfa00 (patch)
tree781ece3192fa670d20724f53cd05d5d1efa02e81
parent16f0f5782e6502fdf44f244c277c6eb900ec0af3 (diff)
downloadaur-2178a10bb6883319d71b2567ac4767cfa78bfa00.tar.gz
Flip Install Lines
According to https://unix.stackexchange.com/questions/76389/recommended-way-of-installing-python-packages-on-arch the recommended way of installing python packages on Arch is using pacman, so I've flipped the two lines to recommend pacman first.
-rw-r--r--anki-sync-server.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/anki-sync-server.install b/anki-sync-server.install
index 7024ea42ce9f..2338770b8d3b 100644
--- a/anki-sync-server.install
+++ b/anki-sync-server.install
@@ -58,11 +58,11 @@ then run:
if you run it as another user you may have to install some dependencies again:
- pip install --user webob decorator
+ sudo pacman -S python2-webob python2-decorator
or:
- sudo pacman -S python2-webob python2-decorator
+ pip install --user webob decorator
=== (be aware you may have trouble with permissions on your auth.db if you run as different users!) ===