We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a5d4a commit 360ef36Copy full SHA for 360ef36
install.sh
@@ -1,11 +1,14 @@
1
#!/bin/bash
2
3
+PYTHON_VER="3.6"
4
+
5
+# ubuntu install dependencies
6
# sudo add-apt-repository ppa:deadsnakes/ppa
7
# sudo apt update
-# sudo apt install python3.6 python3.6-venv
8
+# sudo apt install python${PYTHON_VER} python${PYTHON_VER}-venv python${PYTHON_VER}-dev
9
10
rm -rf venv_sa_conv
-python3.6 -m venv venv_sa_conv
11
+python${PYTHON_VER} -m venv venv_sa_conv
12
source venv_sa_conv/bin/activate
13
14
pip install -r requirements.txt
0 commit comments