Post List

811words1 mins.

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. # Quick Start # Create a new post h$ hexo new "My New Post"More info: Writing # Run server h$ h
709words1 mins.

# 虚拟环境 python 项目经常能看见 .venv 文件夹,这就是 python 的虚拟环境目录,通俗解释就有点像前端项目中的 node_modules 文件。更多解释可以看这个→。我们使用虚拟环境可以很好的隔离不同项目文件的依赖,更好的开发项目,具体使用方式如下: 在项目创建 env 环境 > mkdir myproject> cd myproject> py -3 -m venv .venv 激活环境 > .venv\Scripts\activate此时 shell 提示在 venv 环境中 下载 python 包 pip install Fla