curl https://update.glados-config.com/clash/416093/aa7dffd/114950/glados-terminal.yaml > glados.yaml #下载您的终端配置文件

chmod +x ./clash-linux-amd64-v1.10.0

./clash-linux-amd64-v1.10.0 -f glados.yaml -d .

export ALL_PROXY=”127.0.0.1:1890”

export ALL_PROXY=””

Jupyter挂梯子

1
2
3
4
5
6
7
import os

# 设置 ALL_PROXY 环境变量
os.environ['ALL_PROXY'] = '127.0.0.1:1890'
import requests
response = requests.get('https://www.google.com')
response.status_code