20 lines
473 B
Plaintext
20 lines
473 B
Plaintext
yum install -y wget epel-release
|
|
|
|
yum install -y python3.12
|
|
|
|
cd /usr/bin
|
|
rm -rf python3
|
|
rm -rf python
|
|
|
|
ln -s python3.12 python3
|
|
ln -s python3.12 python
|
|
|
|
cd /usr/local
|
|
wget https://bootstrap.pypa.io/get-pip.py
|
|
python3 get-pip.py -i https://mirrors.aliyun.com/pypi/simple/
|
|
|
|
yum install -y git gcc gcc-c++ zlib-devel
|
|
|
|
git clone https://gitee.com/fzxs/markitdown.git
|
|
cd markitdown
|
|
pip install -e packages/markitdown -i https://mirrors.aliyun.com/pypi/simple/ |