摘要: class NQueen: def __init__(self, n): self.n = n self.cnt = 0 self.column = [0 for i in range(n + 1)] # column[i] means the column of queen in the i ro 阅读全文
posted @ 2025-07-11 10:25 无眠之月 阅读(20) 评论(0) 推荐(0)
摘要: 官方方法:https://milvus.io/docs/zh/install_standalone-docker.md 存在两个问题 wget https://raw.githubusercontent.com/milvus-io/milvus/master/scripts/standalone_e 阅读全文
posted @ 2025-03-06 00:22 无眠之月 阅读(163) 评论(0) 推荐(0)
摘要: 先nvcc -V查看cuda版本,如12.3 下载<=该版本的CUDA: https://developer.nvidia.com/cuda-toolkit-archive 下载三件套: torch, torchvision, torchaudio:https://download.pytorch. 阅读全文
posted @ 2025-02-25 14:03 无眠之月 阅读(182) 评论(0) 推荐(0)
摘要: 1.申请修改配置文件权限 对于xampp目录,参考 https://g.pconline.com.cn/x/1659/16591467.html 2.修改配置文件 httpd.conf、config.inc.php修改80端口;my.ini修改3306端口 3.Mysql 打开localhost:8 阅读全文
posted @ 2025-02-14 01:29 无眠之月 阅读(58) 评论(0) 推荐(0)
摘要: 项目的不同模块可能需要用到一个python库的不同版本,为避免冲突,需要通过conda构建多个python虚拟环境,来安装不同版本的库 conda env list # 列出所有环境 conda create --name py310 # 创建环境py310 conda activate py310 阅读全文
posted @ 2024-09-29 19:06 无眠之月 阅读(715) 评论(0) 推荐(0)
摘要: sudo update-alternatives --install /usr/bin/pip3 pip3 /usr/local/bin/pip3.6 1 sudo update-alternatives --install /usr/bin/pip3 pip3 /usr/local/bin/pip 阅读全文
posted @ 2024-07-26 14:21 无眠之月 阅读(331) 评论(0) 推荐(0)
摘要: 因为缺少find所以安装findutils apt-get install findutils 报错说缺少xargs和find,但这俩也是属于findutils的,造成了循环依赖 root@ubuntu:/home/mika# apt-get install findutils Reading pa 阅读全文
posted @ 2024-07-26 12:58 无眠之月 阅读(92) 评论(0) 推荐(0)
摘要: 首先单独下载camera raw,进到C:\ProgramData\Adobe\CameraRaw\CameraProfiles\Camera中获取想要的相机型号的预设dcp文件 去 https://liquidtelecom.dl.sourceforge.net/project/dcptool/d 阅读全文
posted @ 2024-04-26 00:32 无眠之月 阅读(547) 评论(0) 推荐(0)
摘要: 首先File->Project Structure里面添加module 点击run旁边的Run/Debug设置,新增一个Application,填写jdk、module名、主类、工作目录 按住Shift点击Run 即可在下方的Service里面看到同时运行两个modules 注意:相同类型的modu 阅读全文
posted @ 2024-04-17 12:01 无眠之月 阅读(534) 评论(0) 推荐(0)
摘要: 社区版:Download MongoDB Community Server | MongoDB 开启服务,localhost:27017,数据写到--dbpath中 mongod --dbpath E:\MongoDB\Server\7.0\db mongodb6.0以上版本要想使用shell交互, 阅读全文
posted @ 2023-12-15 11:23 无眠之月 阅读(33) 评论(0) 推荐(0)