Skip to content

Commit 360ef36

Browse files
committed
new install python 3.6
1 parent 73a5d4a commit 360ef36

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

install.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
#!/bin/bash
22

3+
PYTHON_VER="3.6"
4+
5+
# ubuntu install dependencies
36
# sudo add-apt-repository ppa:deadsnakes/ppa
47
# sudo apt update
5-
# sudo apt install python3.6 python3.6-venv
8+
# sudo apt install python${PYTHON_VER} python${PYTHON_VER}-venv python${PYTHON_VER}-dev
69

710
rm -rf venv_sa_conv
8-
python3.6 -m venv venv_sa_conv
11+
python${PYTHON_VER} -m venv venv_sa_conv
912
source venv_sa_conv/bin/activate
1013

1114
pip install -r requirements.txt

0 commit comments

Comments
 (0)