mirror of
https://github.com/msojocs/wechat-web-devtools-linux.git
synced 2025-07-22 00:00:04 +08:00
16 lines
434 B
Bash
16 lines
434 B
Bash
#!/bin/bash
|
|
|
|
root_dir=$(cd `dirname $0`/.. && pwd -P)
|
|
export PATH="$root_dir/node/bin:$PATH"
|
|
export http_proxy="http://127.0.0.1:54321"
|
|
|
|
|
|
if [[ ! -z $https_proxy || ! -z $http_proxy ]]; then
|
|
echo -e "\033[41;37m 警告: 你设置了代理,有可能导致安装出现异常 \033[0m"
|
|
fi
|
|
|
|
PY_VERSION=`python -V 2>&1|awk '{print $2}'|awk -F '.' '{print $1}'`
|
|
echo $PY_VERSION
|
|
if [ "$PY_VERSION" == "Python 3.10.1" ]; then
|
|
echo ok
|
|
fi |