但是,如果您在使用 Python 时没有安装 turtle 库,您可以使用 pip 命令来安装它:
pip install turtle
pip 是 Python 的包管理工具,它可以让您安装、卸载和管理 Python 包。
安装完成后,您可以在 Python 程序中使用 import 命令来引入 turtle 库:
import turtle
然后您就可以使用 turtle 库中的功能了。
导出python库命令为:
pip3 freeze >filename.txt
三方库方法为:
pip install -r pypy.txt
指定源安装库
pip install 模块名 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip3 install threads -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn
python库镜像源
http://mirrors.aliyun.com/pypi/simple/ 阿里云
https://pypi.mirrors.ustc.edu.cn/simple/ 中国科技大学
http://pypi.douban.com/simple/ 豆瓣
https://pypi.tuna.tsinghua.edu.cn/simple/ 清华大学
http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)