Python-3.8.3 没有安装在 Oracle Linux Server 7.3 中?

Python-3.8.3 not installing in Oracle Linux Server 7.3?

wget https://www.python.org/ftp/python/3.8.3/Python-3.8.3.tgz

已解压Python-3.8.3.tgz解压后文件夹没有bin文件夹

已从工作的 Oracle Linux Server 7.6 服务器和 运行 python3 或 python8.3 复制解压缩的 Python3.8.3,但说命令不是找到

不确定将解压缩的 python 目录放在哪里, 但除非您添加该目录在您的路径中,否则您需要从当前目录 运行 像这样

./python3
# or
./python3.8

或者将解压后的目录添加到path中

# for current session only
export PATH=$PATH:/your/unzipped/python/dir
# to add permanently
echo 'export PATH=$PATH:/your/unzipped/python/dir' >> ~/.bashrc
# or ~/.bash_profile