在Win 10下
tic
system ('curl -s \ -H "X-MBX-APIKEY: YOURAPIKEY" \ -X GET
"https://api.binance.com/api/v3/ticker/price")';
toc
在Linux下
tic
system ('env -i curl -s \ -H "X-MBX-APIKEY: YOURAPIKEY" \ -X GET
"https://api.binance.com/api/v3/ticker/price")';
toc
问题是执行时间。在Win10 = 2s下,在Linux = 22s下。 我该怎么办?