返回顶部
📍 正在感知时空状态...

文章 2025年12月11日

win11恢复经典右键菜单脚本.bat

@echo off chcp 65001 title Windows 11 右键菜单切换工具 color 0A echo ============================================== echo  Windows 11 右键菜单切换工具 echo ============================================== echo  1. 恢复默认右键菜单 echo  2. 恢复经典右键菜单 echo...

文章 2023年09月07日

pip更改镜像源

设置全局:pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simple其他源:中国科学技术大学 https://mirrors.ustc.edu.cn/pypi/web/simple 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple  华中科技大学 http://pypi.hustunique.com/simple 中国科学院 https://pypi.mirrors.opencas.cn/...

文章 2023年09月07日

Python自动安装库

Python中自动安装所使用的库:import subprocess # 列出需要安装的库 required_libraries = ['numpy', 'pandas', 'matplotlib'] # 遍历库列表并执行pip install命令 for library in required_libraries:     try:       &nb...

文章 2023年08月18日

python之爬取豆瓣前250排名电影标题

原代码:import requests import re   headers = {     "User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.188&...

Python对图片进行颜色分析并提供图片中的主要颜色以及其相应的出现频率
文章 2023年08月18日

Python对图片进行颜色分析并提供图片中的主要颜色以及其相应的出现频率

from sklearn.cluster import KMeans # pip install scikit-learn import numpy as np from PIL import Image # Define the number of colors to extract n_colors = 5 image_path = (     input("选择图片:") or r"D:\Downl...