Usage: pipenv [OPTIONS] COMMAND [ARGS]...
Options:
--update 升级 pipenv, pip 到最新.
--where 输出项目的目录信息.
--venv 输出 virtualenv 的目录信息.
--py 输出 Python 解析器的路径.
--envs 输出环境变量的设置.
--rm 删除当前 virtualenv.
--bare Minimal output.
--completion Output completion (to be evald).
--man 显示使用手册.
--three / --two 使用 Python 3/2 来创建 virtualenv
--python TEXT 直接指定 Python 解析器.
--site-packages 拷贝系统 site-packages 到 virtualenv.
--jumbotron An easter egg, effectively.
--version 显示版本信息并退出.
-h, --help 显示当前信息并退出.
Commands:
check 检查安全漏洞和反对 PEP 508 标记在Pipfile提供.
graph 显示当前依赖关系图信息.
install 安装提供的包,并加入 Pipfile 的依赖清单中
lock 生成 Pipfile.lock.
open 在编辑器(vim)查看一个特定模块.
run 在 virtualenv 中执行命令.
shell 切换到 virtualenv 中.
uninstall 删除提供的包,并清理 Pipfile 的依赖清单中.
update 卸载当前所以依赖,然后安装最新包
————————————————
版权声明:本文为CSDN博主「UMBL」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_29799175/article/details/113581544
pip install pipenv
安装pipenvpipenv --python 3.6
(可选,如果不初始,则跟随系统)pipenv install
开始安装虚拟环境pipenv shell
进入虚拟环境pipenv install xxx
安装相关依赖包pipenv graph
查看目前按照的依赖包pip install pipenv
pip uninstall pipenv
pip install --user --upgrade pipenv
pipenv install
Pipfile
:用于保存项目的python版本、依赖包等相关信息Pipfile.lock
:用于对Pipfile的锁定[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
requests-html = "*"
[dev-packages]
[requires]
python_version = "3.7"
pipenv --rm
pipenv install
:
pipenv install xx
:安装python包
pipenv uninstall xx
:卸载python包
pipenv shell
:进入虚拟环境(项目目录下)
exit
:退出虚拟环境
pipenv graph
:显示包依赖关系
pipenv --venv
:显示虚拟环境安装路径
pipenv graph
pipenv install request
pipenv install requests==2.13.0
如果是第一次运行pipenv的话,会先创建Pipfile文件,否则会修改Pipfile`文件。
该命令还有一个常用参数-d或–dev,用于安装仅供开发使用的包。
--all
和--all-dev
用于卸载所有包和所有开发包。pipenv uninstall requests
pipenv update --outdated
pipenv update
pipenv update <包名>
pipenv install -r path/to/requirements.txt
pipenv --python 3
pipenv --python 3.6
pipenv --python 2.7.14
pipenv shell
如果不想启动shell,而是直接在虚拟环境中执行命令,可以使用run:
pipenv run python --version
pipenv lock
如果你开发调试时需要配一堆环境变量,可以写到.env文件中,在pipenv shell进入虚拟环境时,它会帮你把这些环境变量加载好,非常方便。
例如写一个.env文件
echo "test=toutiao" > .env
pipenv lock -r
pipenv lock -r --dev
pipenv只能搜索系统中已经安装的Python版本,对于未安装的版本,会提示错误。但是如果你同时安装了pyenv的话,pipenv会自动发现pyenv,然后直接询问你是否要安装。这样一来,原来的工作流程是:用pyenv安装某个Python
-> 用virtualenv或venv创建虚拟环境
-> 用pip从requirements.txt中安装包
-> 将来可能还要更新包
。现在完全可以用pipenv一两条命令解决,真的是非常方便。
自动加载.env文件
.env
文件可以设置一些环境变量,在程序开发的时候模拟环境变量。pipenv
也可以自动加载.env
文件。
$ cat .env
HELLO=WORLD⏎
$ pipenv run python
Loading .env environment variables…
Python 2.7.13 (default, Jul 18 2017, 09:17:00)
[GCC 4.2.1 Compatible Apple LLVM 8.1.0 (clang-802.0.42)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.environ['HELLO']
'WORLD'
${MY_ENVAR}
或$MY_ENVAR
,在Windows系统中还支持%MY_ENVAR%
。[[source]]
url = "https://${PYPI_USERNAME}:${PYPI_PASSWORD}@my_private_repo.example.com/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
[packages]
requests = {version="*", index="home"}
maya = {version="*", index="pypi"}
records = "*"
WORKON_HOME
环境变量的值即可。如果设置了PIPENV_VENV_IN_PROJECT
环境变量,pipenv会把虚拟环境放在项目目录的.venv
目录下。
pipenv install -e .
关键点就一个:要在虚拟环境里安装pyinstaller如果你没有在虚拟环境中安装pyinstaller,你同样可以使用pyinstaller命令,但是调用的是你系统原本的那个python编译器,内含很多关联库,导致即使在虚拟环境中,你打包的exe文件仍然非常大。
另外一点要注意的是:要在虚拟环境里安装好你py文件中调用的库,不然打包出来也没法正常运行。
#建立虚拟环境
pipenv install
#进入虚拟环境
pipenv shell
#安装模块
pip install xxx.py里面用到的模块
#打包的模块也要安装
pipenv install pyinstaller
# 备份环境 requirements.txt
pipenv -lock -r
或者
pip freeze >requirements.txt
#开始打包
pyinstaller -Fw -i 8.ico ./xxx.py
阿里云:http://mirrors.aliyun.com/pypi/simple/
豆瓣:http://pypi.douban.com/simple/
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学:https://pypi.mirrors.ustc.edu.cn/simple/
pipenv lock -r
pipenv lock -r --dev
(venv) $ pip freeze >requirements.txt
(venv) $ pip install -r requirements.txt
pipenv install -i http://pypi.douban.com/simple/ request
UnicodeDecodeError: 'gbk' codec can't decode byte 0xac in position 384: illegal multibyte sequence
Pipfile
和 Pipfile.lock
让它自动在生成一个就可Pipfile.lock (9f6bff) out of date, updating to (32fa97)...
Locking [dev-packages] dependencies...
Locking [packages] dependencies...
Locking...Building requirements...
Resolving dependencies...
Locking Failed!
[ResolutionFailure]: File "d:/anaconda/anaconda/lib/site-packages/pipenv/resolver.py", line 741, in _main
[ResolutionFailure]: resolve_packages(pre, clear, verbose, system, write, requirements_dir, packages, dev)
[ResolutionFailure]: File "d:/anaconda/anaconda/lib/site-packages/pipenv/resolver.py", line 709, in resolve_packages
[ResolutionFailure]: requirements_dir=requirements_dir,
[ResolutionFailure]: File "d:/anaconda/anaconda/lib/site-packages/pipenv/resolver.py", line 692, in resolve
[ResolutionFailure]: req_dir=requirements_dir
[ResolutionFailure]: File "d:\anaconda\anaconda\lib\site-packages\pipenv\utils.py", line 1405, in resolve_deps
[ResolutionFailure]: req_dir=req_dir,
[ResolutionFailure]: File "d:\anaconda\anaconda\lib\site-packages\pipenv\utils.py", line 1110, in actually_resolve_deps
[ResolutionFailure]: resolver.resolve()
[ResolutionFailure]: File "d:\anaconda\anaconda\lib\site-packages\pipenv\utils.py", line 835, in resolve
[ResolutionFailure]: raise ResolutionFailure(message=str(e))
[pipenv.exceptions.ResolutionFailure]: Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
First try clearing your dependency cache with $ pipenv lock --clear, then try the original command again.
Alternatively, you can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
Hint: try $ pipenv lock --pre if it is a pre-release dependency.
ERROR: Could not find a version that matches request (from -r C:\Users\25387\AppData\Local\Temp\pipenv7ncgw_byrequirements\pipenv-qsvdlqc1-constraints.txt (line 2))
No versions found
Was https://pypi.org/simple reachable?