forked from dusty-nv/jetson-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·67 lines (53 loc) · 1.83 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env bash
# Python installer
set -x
apt-get update
apt-get install -y --no-install-recommends \
python${PYTHON_VERSION} \
python${PYTHON_VERSION}-dev
which python${PYTHON_VERSION}
return_code=$?
set -e
if [ $return_code != 0 ]; then
echo "-- using deadsnakes ppa to install Python ${PYTHON_VERSION}"
add-apt-repository ppa:deadsnakes/ppa
apt-get update
apt-get install -y --no-install-recommends \
python${PYTHON_VERSION} \
python${PYTHON_VERSION}-dev
fi
# path 1: Python 3.8-3.10 for JP5/6
# path 2: Python 3.6 for JP4
# path 3: Python 3.12 for 24.04
distro=$(lsb_release -rs)
if [ $distro = "24.04" ]; then
apt-get install -y --no-install-recommends python3-venv
python3 -m venv --system-site-packages /opt/venv
source /opt/venv/bin/activate
curl -sS https://bootstrap.pypa.io/get-pip.py | python${PYTHON_VERSION}
elif [ $distro = "18.04" ]; then
curl -sS https://bootstrap.pypa.io/pip/3.6/get-pip.py | python3.6
else
curl -sS https://bootstrap.pypa.io/get-pip.py | python${PYTHON_VERSION}
fi
rm -rf /var/lib/apt/lists/*
apt-get clean
ln -f -s /usr/bin/python${PYTHON_VERSION} /usr/local/bin/python3
#ln -s /usr/bin/pip${PYTHON_VERSION} /usr/local/bin/pip3
# this was causing issues downstream (e.g. Python2.7 still around in Ubuntu 18.04, \
# and in cmake python enumeration where some packages expect that 'python' is 2.7) \
#RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1 && \ \
# update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1 \
which python3
python3 --version
which pip3
pip3 --version
python3 -m pip install --upgrade pip pkginfo --index-url https://pypi.org/simple
pip3 install --no-binary :all: psutil
pip3 install --upgrade \
setuptools \
packaging \
'Cython' \
wheel
pip3 install --upgrade --index-url https://pypi.org/simple \
twine