
常识
心_kokoro
暂停更新
展开
-
NS在Ubuntu上的安装
ns3 ubuntu原创 2022-01-05 21:28:17 · 1804 阅读 · 0 评论 -
csdn博客中如何让图片居中
在图片链接末尾加上#pic_center亲测有效,#也要打上去原创 2021-01-15 23:02:21 · 344 阅读 · 3 评论 -
python获取屏幕像素
python获取屏幕像素from ctypes import * # 获取屏幕上某个坐标的颜色 def get_color(x, y): gdi32 = windll.gdi32 user32 = windll.user32 hdc = user32.GetDC(None) # 获取颜色值 pixel = gdi32.GetPixel(hdc, x, y) # 提取RGB值 r = pixel & 0x0000ff g = (pixel &原创 2020-12-30 22:38:09 · 3610 阅读 · 1 评论 -
详解conda与pip的区别(翻译自Understanding Conda and Pip)
详解conda与pip的区别 (翻译自Understanding Conda and Pip)原文传送门一句话概括翻译简介包的区别虚拟环境区别依赖的区别总结原文传送门Understanding Conda and Pip一句话概括pip可以允许你在任何环境中安装python包,而conda允许你在conda环境中安装任何语言包(包括c语言或者python)。condapip包的形式二进制whl or source需要编译器否是包的种类任意语言只有Pyt翻译 2020-11-10 20:51:19 · 1205 阅读 · 0 评论