Install Wget on Windows Powershell

Powershell echo =============================================================================== Invoke-WebRequest -Uri "https://eternallybored.org/misc/wget/1.21.4/64/wget.exe" -OutFile "C:\Windows\wget.exe" echo =============================================================================== 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" echo =============================================================================== 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 cd %TEMP% cmd /k "cd /d %TEMP%" start cmd /k "cd /d %TEMP%" 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 ===============================================================================

May 10, 2025 · 1 min · 94 words · YK

PIP Fast Mirrors

PIP Fast Mirrors # 阿里源 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 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 unset global.index-url

January 10, 2025 · 1 min · 44 words · YK