diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2019-09-18 15:57:16 +1000 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2019-09-18 15:57:16 +1000 |
commit | ad14aed02bbaef84dd9dae16d1040247e7951829 (patch) | |
tree | 3cb5f09805d6d32fbc30706dbe77ed5ef238476a | |
parent | 25bc7ea7f69597f14e39531ba6d6e2518af58d0a (diff) | |
download | mediagoblin-ad14aed02bbaef84dd9dae16d1040247e7951829.tar.lz mediagoblin-ad14aed02bbaef84dd9dae16d1040247e7951829.tar.xz mediagoblin-ad14aed02bbaef84dd9dae16d1040247e7951829.zip |
Add omitted --system-site-packages for Python 3 on Guix, add update_extlib.sh docs.
-rw-r--r-- | guix-env.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/guix-env.scm b/guix-env.scm index dfe9d8eb..868bdeea 100644 --- a/guix-env.scm +++ b/guix-env.scm @@ -35,7 +35,7 @@ ;;; ./bootstrap.sh ;;; ./configure --with-python3 --without-virtualenv ;;; make -;;; python3 -m venv . && bin/python setup.py develop --no-deps +;;; python3 -m venv --system-site-packages . && bin/python setup.py develop --no-deps ;;; ;;; ... wait whaaat, what's that last line! I thought you said this ;;; was a reasonable virtualenv replacement! Well it is and it will @@ -46,7 +46,8 @@ ;;; ;;; The devtools/update_extlib.sh script won't run on Guix due to missing ;;; "/usr/bin/env", so then run: -;; node node_modules/.bin/bower install +;;; node node_modules/.bin/bower install +;;; ./devtools/update_extlib.sh ;;; bin/gmg dbupdate ;;; bin/gmg adduser --username admin --password a --email admin@example.com ;;; ./lazyserver.sh |