Articles
6
Tags
22
Categories
8
Home
About
EkzykesNotFound404
pip设置国内镜像
Back to Home
Home
About
pip设置国内镜像
Created
2026-04-01
|
Updated
2026-04-01
|
技术笔记
环境配置
Python
|
Post Views:
pip设置国内镜像
1
pip config
set
global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
Author:
Ekzykes
Link:
http://blog.ekzykes.me/5/
Copyright Notice:
All articles on this blog are licensed under
CC BY-NC-SA 4.0
unless otherwise stated.
pip
Python
镜像源
清华镜像
Previous
Windows 安装MiniConda(配置环境PowerShell问题自定义虚拟环境路径)
一、Minicanda安装打开浏览器,跳转到MiniConda官网,向下滑动找到并点击Miniconda3 Windows 64-bit 二、安装MiniConda无脑下一步,安装完毕 三、添加环境变量 path\to\your\minicondapath\to\your\miniconda\Library\binpath\to\your\miniconda\Scripts 四、PowerShell问题 打开PowerShell终端 键入指令conda init powershell,初始化conda 键入指令Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser修改PowerShell限制策略 重启PowerShell,检查conda activate是否生效 五、设置虚拟环境安装路径在C:\Users\用户名中找到 .condarc 文件,选中右键,在记事本中编辑打开,将下面的文本复制进去 12345envs_dirs: - D:\soft\Miniconda\envs pkgs_di...
Next
MongoDB创建用户并且赋予读写权限
12345678db.createUser({ user: "myUser", pwd: "myPassword", roles: [ { role: "readWrite", db: "mydatabase" }, { role: "read", db: "anotherdatabase" } // 只有读权限 ]});
Ekzykes
I want to sleep.
Articles
6
Tags
22
Categories
8
Follow Me
Announcement
This is my Blog
Recent Posts
git 设置用户名邮箱
2026-04-01
Linux 安装Miniconda3
2026-04-01
MongoDB创建用户并且赋予读写权限
2026-04-01
pip设置国内镜像
2026-04-01
Windows 安装MiniConda(配置环境PowerShell问题自定义虚拟环境路径)
2026-04-01