docker内手动安装python环境
直接安装 apt-get install python3.6 ,失败,出现E: Unable to locate package python3.6E: Couldn't find any package by glob 'python3.6'E: Couldn't find any package by regex 'python3.6这是因为Ubuntu无法找到add-apt-r...
·
直接安装 apt-get install python3.6 ,失败,出现
E: Unable to locate package python3.6
E: Couldn't find any package by glob 'python3.6'
E: Couldn't find any package by regex 'python3.6
这是因为Ubuntu无法找到add-apt-repository问题的解决方法
解决方法是:
apt-get install python-software-properties
apt-get install software-properties-common
add-apt-repository ppa:jonathonf/python-3.6
然后执行
apt-get update
再执行
apt-get install python3.6
更多推荐
已为社区贡献2条内容
所有评论(0)