主要使用两个工具 pyenv
pipenv
pyenv
主要用来管理电脑上安装的 python 版本, 多个版本 python 是可以共存的, 不同的条件下需要使用不同的 python.pyenv 可以很方便的管理不同版本 python.
下面列出常用命令
Usage: pyenv <command> [<args>]
Some useful pyenv commands are:
local 设置本地使用的 python 版本
global 设置全景使用的 python 版本
install 安装某个版本
uninstall 卸载某个版本
version 打印出当前使用的版本信息
versions 列出当前可用所有的版本
which 打印出 python 安装路径
比例安装 python 3.6.5
pyenv install 3.6.5
然后设置全局使用 python3.6.5
pyenv global 3.6.5
两条命令就搞定了.不需要自己下载解压安装 python,不停的切换了.太方便了.
pipenv
开发过程中需要使用别人开发的各种成熟的代码库, pipenv 就是帮我们快速安装集成这些库的工具.
开发 flask 一般都需要创建单独的虚拟环境.
先建立一个目录 test/
cd 到 test 后
pipenv --three
就创建 python3的虚拟环境
pipen shell 进入虚拟环境中
pipenv install flask
虚拟环境中安装 flask
然后就可以快乐的开发 flask 了.
网友评论