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.

32 lines
2.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

anaconda安装配置教程
https://blog.csdn.net/qq_42257666/article/details/121383450
Python安装Pytorch教程图文详解
https://blog.csdn.net/qq_42257666/article/details/121361983
Cutie官网
https://github.com/hkchengrex/Cutie
一键打包,随时运行,Python3项目虚拟环境一键整合包的制作(Venv)
https://www.cnblogs.com/v3ucn/p/17937536
AI 项目推荐: 文字转语音 edge-tts 使用指南 (白嫖)
https://www.bingal.com/posts/edge-tts-usage/
windows中python环境打包五种方式无python的电脑也可用
https://blog.csdn.net/qq_37354233/article/details/123731111
一个视频告诉你GitHub的pyvideo项目整合包制作全攻略
https://www.youtube.com/watch?v=6QdYh4PVmLs
====================================================================
Q:pip install -e . 这是什么意思?
`pip install -e .` 是一个用于Python的包管理工具pip的命令它用于安装Python包。具体来说这个命令的含义如下
1. `pip`Python包安装程序Package Installer for Python是一个广泛使用的Python包管理工具。
2. `install`这是pip命令的一个子命令用于安装Python包。
3. `-e`这是一个选项代表“editable”模式也称为开发模式。使用这个选项安装的包可以即时反映源代码的更改而不需要重新安装。
4. `.`:代表当前目录。所以`pip install -e .`命令的意思是使用pip在当前目录下安装一个Python包并且以开发模式安装。
开发模式安装的好处是,当你修改了包的源代码后,不需要重新运行`pip install`命令就可以立即看到更改的效果。这对于开发和测试自己编写的Python包非常有用。
举个例子,如果你正在开发一个名为`mypackage`的Python包并且它的源代码位于当前目录下你可以运行`pip install -e .`来以开发模式安装这个包。之后,你对`mypackage`所做的任何更改都会立即反映在安装的包中,无需重新安装。
总结一下,`pip install -e .`是一个用于在开发过程中安装并编辑Python包的命令。