0

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.8.3 并运行 python3 或 python8.3 但说找不到命令

错误截图

4

1 回答 1

2

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

./python3
# or
./python3.8

或者将解压后的目录添加到路径中。

# 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
于 2021-01-22T09:06:37.937 回答