
Linux
mengke_yu
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TypeError: descriptor '__subclasses__' of 'type' object needs an argument
TypeError: descriptor ‘subclasses’ of ‘type’ object needs an argument 在ubuntu下运行Python程序时,出现如上错误。 解决办法:升级Python3,ubuntu 16.04默认安装的是Python 3.5.2,需要升级Python3至Python 3.6以上。 升级Python方法: (注意:原始的Python 3.5不...原创 2019-07-25 10:39:29 · 5076 阅读 · 0 评论 -
ubuntu下设置DNS
ubuntu下为服务器设置DNS: 1.打开文件: sudo vim /etc/resolvconf/resolv.conf.d/base 2.在里面加入要添加的DNS服务器: nameserver 114.114.114.114 nameserver 8.8.8.8 保存 3.运行 sudo /sbin/resolvconf -u ...原创 2019-07-25 12:46:01 · 334 阅读 · 0 评论