摘要:
ubuntu 14.04 virtualenv venv --python=python3 . venv/bin/activate sudo apt-get upgradesudo apt-get install libjpeg-devsudo apt-get install zlib1g-devs 阅读全文
摘要:
python对开发者友好的根源在于:1、序列的泛型操作2、内置的元组和映身类型3、用缩进来架构的源码4、无需变量声明的强类型 序列数据共用的一套丰富的操作:迭代、切片、排序和拼接。内置序列类型:1、容器序列 list tuple collections.deque 可以存放不同类型的数据,存的是引用 阅读全文
摘要:
pyinstaller --onefile deletelog.py 将脚本生成一个EXE文件 阅读全文
摘要:
miniconda下载地址: https://conda.io/docs/user-guide/install/index.html Installing on Linux Download the installer: Miniconda installer for Linux. In your 阅读全文
摘要:
1. Requirements Ubuntu 14.04 LTS 2. Clone Licode codeYou first need to clone our code from github.You need to have git installed in your computer.In u 阅读全文
摘要:
src\webrtc\examples\peerconnection\client\conductor.ccbool Conductor::InitializePeerConnection()1 webrtc::CreatePeerConnectionFactory();src\talk\app\w 阅读全文
摘要:
src\webrtc\examples\peerconnection\client\conductor.cc1、bool Conductor::InitializePeerConnection()1.1 webrtc::CreatePeerConnectionFactory(); src\talk\ 阅读全文
摘要:
原因:在 PyQt 5.6(+) 版本中, 新增 QtWebEngineWidgets 代替QtWebKitWidgets。 示例代码:#coding: utf-8 import sysfrom PyQt5.QtCore import *from PyQt5.QtWidgets import *fr 阅读全文
摘要:
PyCharm注册地址 http://idea.imsxm.com/ 安装的是miniconda激活虚拟环境执行pip install PyQt5pip install PyQt5-tools 从官网安装Python3.6.0后到安装目录,复制python3.dll到miniconda的安装目录下p 阅读全文
摘要:
4、下载demo工程 git clone https://github.com/electron/electron-quick-start cd electron-quick-start 如果执行cnpm start报错,则直接执行electron .即可。 5、修改代码。[可选] 6、安装打包,生 阅读全文