摘要: Python 3.3以后自带venv模块支持轻量级虚拟环境,而virtualenv模块支持Python2和3两个版本。 1.创建虚拟环境 等价于 目前新版默认不使用系统环境包。 Python3自带venv 也是默认全新干净的环境,相反可选的参数 使虚拟环境指向系统环境包目录(非复制),在系统环境pi 阅读全文
posted @ 2018-08-05 22:06 网络漫步 阅读(1284) 评论(0) 推荐(0)
摘要: 默认不建议在root权限下允许VSCode 阅读全文
posted @ 2018-08-05 15:18 网络漫步 阅读(4484) 评论(0) 推荐(0)
摘要: 转载自:http://www.techtogeek.com/how-to-install-xrdp-in-ubuntu-16-04/ by TechtoGeek · October 31, 2017 What is XRDP and why we use this . XRDP is a OpenS 阅读全文
posted @ 2018-08-05 15:16 网络漫步 阅读(313) 评论(0) 推荐(0)
摘要: Ubuntu16.04默认没有安装ssh service,需要安装: 1 sudo apt-get install openssh-server 2 sudo /etc/init.d/ssh restart 配置允许root用户登录(非安全): 1 nano /etc/ssh/sshd_config 阅读全文
posted @ 2018-08-05 15:05 网络漫步 阅读(420) 评论(0) 推荐(0)
摘要: 转载自:https://blog.zengrong.net/post/2167.html python virtual enviorments 2014-10-10更新: 更新描述。 2015-04-18更新: 加入 ubuntu 14.04 下 pyvenv bug 的解决。 为了解决包依赖、安装 阅读全文
posted @ 2018-08-05 14:54 网络漫步 阅读(564) 评论(0) 推荐(0)