正在加载今日诗词....
📌 Powered by Obsidian Digital Garden and Vercel
载入天数...载入时分秒... 总访问量次 🎉
载入天数...载入时分秒... 总访问量次 🎉
设置清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
设置阿里云
pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/
设置中国科技大学
pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/
设置豆瓣(douban)
pip config set global.index-url http://pypi.douban.com/simple/
python加入搜索路径
使用 sys.path.append
动态添加路径
import sys
# 添加你的路径
sys.path.append('/path/to/your/directory')
从 yaml 中创建环境
conda env create -f xxx.yaml
查看文件下数目数量
ls -l | grep "^-" | wc -l
查看文件夹下目录数量
ls -l |grep "^d"|wc -l
如果找不到相对路径
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(file), '..')))
Huggingface 模型与数据集下载_国内
https://github.com/LetheSec/HuggingFace-Download-Accelerator