PIP Fast Mirrors

  • PIP Fast Mirrors
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 中科大源
pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple

# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple

# 腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple

# 豆瓣源
pip config set global.index-url http://pypi.douban.com/simple

# 换回默认源
pip config unset global.index-url

Install Wget on Windows Powershell

  • Powershell
1
2
3
4
Invoke-WebRequest -Uri "https://eternallybored.org/misc/wget/1.21.4/64/wget.exe" -OutFile "C:\Windows\wget.exe"
Invoke-WebRequest -Uri "https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/wget.exe" -OutFile "C:\Windows\wget.exe"
Invoke-WebRequest -Uri "https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/7z/7z.exe" -OutFile "C:\Windows\7z.exe"
Invoke-WebRequest -Uri "https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/7z/7z.dll" -OutFile "C:\Windows\7z.dll"
1
2
3
4
5
6
7
8
9
10
11
wget --no-check-certificate http://110.41.191.70/files/SunloginClient_15.8.1.19509_x64.exe

wget --no-check-certificate http://110.41.191.70/files/MicrosoftEdgeSetup.exe

wget --no-check-certificate http://110.41.191.70/files/npp.8.5.7.Installer.x64.exe

wget --no-check-certificate https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.7/npp.8.7.Installer.x64.exe

wget --no-check-certificate https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/7z2408-x64.exe

start 7z2408-x64.exe
  • CMD
    1
    cd %TEMP%
    1
    cmd /k "cd /d %TEMP%"
    1
    start cmd /k "cd /d %TEMP%"
1
2
3
4
5
6
7
8
9
10
11
12
13
echo ===============================================================================
wget --no-check-certificate https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/python-3.13.5-amd64.exe
start python-3.13.5-amd64.exe
echo ===============================================================================
wget --no-check-certificate https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/Git-2.43.0-64-bit.exe
start Git-2.43.0-64-bit.exe
echo ===============================================================================
wget --no-check-certificate https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/chromedriver-win64.zip
7z x chromedriver-win64.zip -o"C:\Program Files"
echo ===============================================================================
wget --no-check-certificate https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/chrome-win64.zip
7z x chrome-win64.zip -o"C:\Program Files"
echo ===============================================================================