# 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-04-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 下载 # Windows环境 ## 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:::*/*" ] } ] } ```