Add omitted --system-site-packages for Python 3 on Guix, add update_extlib.sh docs.

This commit is contained in:
Ben Sturmfels 2019-09-18 15:57:16 +10:00
parent 25bc7ea7f6
commit ad14aed02b
No known key found for this signature in database
GPG Key ID: 023C05E2C9C068F0

View File

@ -35,7 +35,7 @@
;;; ./bootstrap.sh ;;; ./bootstrap.sh
;;; ./configure --with-python3 --without-virtualenv ;;; ./configure --with-python3 --without-virtualenv
;;; make ;;; 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 ;;; ... wait whaaat, what's that last line! I thought you said this
;;; was a reasonable virtualenv replacement! Well it is and it will ;;; 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 ;;; The devtools/update_extlib.sh script won't run on Guix due to missing
;;; "/usr/bin/env", so then run: ;;; "/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 dbupdate
;;; bin/gmg adduser --username admin --password a --email admin@example.com ;;; bin/gmg adduser --username admin --password a --email admin@example.com
;;; ./lazyserver.sh ;;; ./lazyserver.sh