We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c930e77 commit 22fe519Copy full SHA for 22fe519
1 file changed
config.sh
@@ -126,6 +126,7 @@ def VIP():
126
#pip install scanpy/
127
128
pip install scanpy==1.6.1
129
+if [ $(python -c 'import scanpy; print(scanpy.__version__)') != "1.6.1" ]; then pip install scanpy==1.6.1; fi
130
131
cd cellxgene
132
make pydist
@@ -159,3 +160,5 @@ echo -e "\nls -l $strweb\n"
159
160
ls -l $strweb
161
162
export LIBARROW_MINIMAL=false
163
+if [ $(python -c 'import nbconvert; print(nbconvert.__version__)') != "5.6.1" ]; then pip install nbconvert==5.6.1; fi
164
+
0 commit comments