mac下安装pyside2 技术
mac下安装pyside2
环境:mac已经安装了python3.5,pip3.5
IDE:PyCharm
安装pyside2
pip3.5 install --index-url=http://download.qt.io/snapshots/ci/pyside/5.9/latest/ pyside2 --trusted-host download.qt....
在Coding部署Hexo 技术
在Coding部署Hexo
网上的Hexo教程大多是部署在Github,在实际的使用中,Github速度比较满,有时更新还会抽风一下,于是想在国内找个替代方案。
目前来说,Coding从体验和速度来说,都是国内比较好的选择,阿里云虽然也有代码库,但是刚开始起步,很多都还不完善,但是如果做下去,未来看好。
下面以Coding为例,说一下部署的步骤。
注册
这个...
Git 常用命令速查表 技术
Git 常用命令速查表
配置
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
创建版本库
$ git clone [url] #克隆远程版本库
$ git clone git://github.com/schacon...