Clarify install docs for python3 and venvs

This commit is contained in:
Charlotte Weaver
2018-07-17 16:03:33 -07:00
parent 28d341cf1c
commit 8b0d7d5cf6
+4 -3
View File
@@ -22,12 +22,13 @@ A React + Redux web application for exploring large scale single cell RNA sequen
#### To use with virtual env for python (optional, but recommended)
python3 -m venv <env name>
source <env name>/bin/activate
ENV_NAME=cellxgene
python3 -m venv ${ENV_NAME}
source ${ENV_NAME}/bin/activate
#### install server
python setup.py install
python3 setup.py install
#### run (with demo data)