# Python开发环境 **Repository Path**: ProductPush/python-development-environment ## Basic Information - **Project Name**: Python开发环境 - **Description**: 开发环境 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-21 - **Last Updated**: 2026-05-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 下载 # Windows环境 # MongoDB [mongodb-windows-x86_64-8.3.1-signed.msi](https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-8.3.1-signed.msi) [mongodb-database-tools-windows-x86_64-100.17.0.zip](https://fastdl.mongodb.org/tools/db/mongodb-database-tools-windows-x86_64-100.17.0.zip) ## 备份数据库(开机启动) - `Win + R` 输入 `shell:startup` - 创建 `mongodb\mongodb_backup.bat` 快捷方式放进去 # phpStudy v8.1 自带MySQL8、Redis [phpStudy_64.zip](https://public.xp.cn/upgrades/phpStudy_64.zip) ## redis.conf ```conf bind 0.0.0.0 port 6379 timeout 65 maxclients 10000 databases 16 maxmemory 10737418240 # 持久化配置(保证重启/改配置不丢数据) save 3600 1 save 300 100 # save 60 10000 dbfilename dump.rdb dir ./ rdbcompression yes rdbchecksum yes # 禁止空转导致数据丢失 stop-writes-on-bgsave-error yes # 日志 loglevel notice logfile "" # TCP 保活 tcp-keepalive 300 # Windows 专用 daemonize no ``` ## uv [0.9.26](https://github.com/astral-sh/uv/releases/download/0.9.26/uv-x86_64-pc-windows-msvc.zip) ## chrome++ [144.0.7559.97](https://github.com/Bush2021/chrome_installer/releases/download/144.0.7559.97/x64_144.0.7559.97_chrome_installer_uncompressed.exe) - 下载后用 7z-zip 解压 ## nodeJS [v20.19.5](https://registry.npmmirror.com/-/binary/node/v20.19.5/win-x64/node.exe) ## MinIO - 需要下载 `minio.RELEASE.2025-04-22T22-12-26Z` 版本 - 该社区版, 拥有全部UI权限, 后面的版本全删了。。 [MinIO](https://dl.min.io/server/minio/release/windows-amd64/archive/) ### 创建用户令牌(普通权限) ```json { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:ListAllMyBuckets" ], "Resource": [ "arn:aws:s3:::*" ] }, { "Effect": "Allow", "Action": [ "s3:GetBucketLocation", "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::*" ] }, { "Effect": "Allow", "Action": [ "s3:GetObject", "s3:PutObject", "s3:DeleteObject" ], "Resource": [ "arn:aws:s3:::*/*" ] } ] } ```