deepin安装 Python-3.8.3.tgz
Tofloor
poster avatar
185******04
deepin
2020-05-18 17:33
Author
用命令:tar xvf Python-3.8.3.tgz
报错:
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now




Reply Favorite View the author
All Replies
avatar
Jack
deepin
2020-05-18 18:29
#1
楼主,如果你想使用高版本Python的话,建议用anaconda(python3.7),直接装,有很多坑,你看看我的博客列表你就知道了,折腾了很久也没弄好。
Reply View the author
avatar
登泰观海
deepin
2020-05-18 21:09
#2
你的参数输入错了,应该是

  1. tar -zxvf xxxx.tar.gz
Copy the Code
Reply View the author
avatar
lbygljq
deepin
2020-05-18 22:56
#3
建议使用miniconda(Python 3.8.1)
Reply View the author
avatar
leafgreen
deepin
2020-05-19 05:24
#4
源码安装千万别直接make install,这样会覆盖系统的python,要用make altinstall
Reply View the author
avatar
mmlmonkey
deepin
2020-05-19 06:29
#5
不要轻易去更新系统的python 这个依赖太多  搞不好就挂了  推荐 anaconda 可以 每次source /bin/activate 即可
Reply View the author
avatar
Feng Yu
deepin
2020-05-19 07:11
#6
本帖最后由 abcfy2 于 2020-5-18 23:12 编辑

Linux下Python开发环境强推anaconda/miniconda,没有比这更理想的开发环境了,不用编译,版本随便切换,自带多版本管理,自带包管理器,包管理器的好处不用多说了吧,用过Linux的用户都知道包管理器是多么伟大的存在,绝大多数常见的包都不用你自己编译,方便升降级,而且有自己的隔离环境,安装到用户家目录,无需root权限,不污染系统Python环境,没有比这更理想的开发环境了,你还在犹豫什么?还在自己编译python吗?赶紧进入conda的锅里来
Reply View the author