1 Star 0 Fork 48

胡汉清/openGauss-DBMind

forked from openGauss/openGauss-DBMind 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.sh 606 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
platform=`uname -p`
if [ $platform == 'x86_64' ]
then
version='x64'
elif [ $platform == 'aarch64' ]
then
version='arm64'
else
echo 'Not supported platform, please download the compiled nodejs and Python runtime manually.'
exit 1
fi
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-${platform}.sh -O miniconda.sh && sh miniconda.sh -b -p python
wget https://nodejs.org/dist/v16.9.0/node-v16.9.0-linux-${version}.tar.xz && tar -xJvf node-v16.9.0-linux-${version}.tar.xz
export CI=False
export PATH=`pwd`/node-v16.9.0-linux-${version}/bin:`pwd`/python/bin:$PATH
make package
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/hu-hanqing/openGauss-DBMind.git
[email protected]:hu-hanqing/openGauss-DBMind.git
hu-hanqing
openGauss-DBMind
openGauss-DBMind
master

搜索帮助