本文主要是介绍Python喜马拉雅免费音频数据爬取部署,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. 代码下载
github代码 https://github.com/toilaj/xmly-downloader/tree/main
只能下载免费音频,vip不能下载。
2. 环境部署
- 下载miniconda3
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
或者链接下载, 寻找linux版本 https://docs.anaconda.com/free/miniconda/
- miniconda3 安装
开发机不能源码安装python环境,可以直接使用miniconda或者conda,从conda里面创建虚环境的时候安装Python。
bash Miniconda3-latest-Linux-x86_64.sh -p dest_dir
-p 指定目录安装,如果不指定则默认安装到home目录下,dest_dir要没有创建,安装会自动创建。
所有安装选项全部yes。
source dest_dir/bin/activate # 激活conda环境
conda env list # 查看conda有多少个虚环境
- 创建python3.11版本虚环境
conda create -n python311 python=3.11 # -n 指定虚环境的名字 python=3.11指定安装Python的版本
conda activate python311 # 切换到python311 环境中
- 安装指定版本py包
pip install -r requirements.txt
环境部署 https://stackoverflow.com/questions/58568175/upgrade-to-python-3-8-using-conda
这篇关于Python喜马拉雅免费音频数据爬取部署的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!