You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
420 B
17 lines
420 B
yum install -y wget epel-release
|
|
|
|
yum install -y python3.12
|
|
|
|
cd /usr/bin
|
|
rm -rf python3
|
|
rm -rf 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/ |