0

为什么我进不去pipenv shell

PS C:\Users\...\desktop\projects\myproject> pip freeze
backports.shutil-get-terminal-size==1.0.0
certifi==2018.1.18
chardet==3.0.4
configparser==3.5.0
Django==1.11
django-debug-toolbar==1.9.1
django-extensions==1.9.9
django-extra-views==0.9.0
djangorestframework==3.7.7
djaodjin-survey==0.1.7
enum34==1.1.6
flake8==3.5.0
idna==2.6
jsonfield==2.0.2
mccabe==0.6.1
pathlib==1.0.1
pew==1.1.2 <---------------------------------- it's right bloody here
pipenv==9.0.3
psutil==5.3.1
psycopg2==2.7.3.2
pycodestyle==2.3.1
pyflakes==1.6.0
pytz==2017.3
rebar==0.1
requests==2.18.4
shutilwhich==1.1.0
six==1.11.0
sqlparse==0.2.4
typing==3.6.2
urllib3==1.22
virtualenv==15.1.0
virtualenv-clone==0.2.6

所以pew肯定是安装的。

PS C:\Users\...\desktop\projects\myproject> pipenv shell
Creating a virtualenv for this project…
New python executable in C:\Users\...\.virtualenvs\myproject-bRnmVZJC\Scripts\python.exe
Installing setuptools, pip, wheel...done.

Virtualenv location:
'pew' is not recognized as an internal or external command,
operable program or batch file.

但不知何故,当我进入时pipenv shell(这样我就可以安装未安装的软件包pipenv

4

1 回答 1

0

问题是我pipenv使用 Python 2.7安装

为了解决这个问题,我安装了 Python 2.7 和 3.4,并为两者设置了路径,以便python2运行 2.7 和python33.4。

然后我pipenv使用python3安装,并pipenv在python 2.7中启动了运行。

python3 -m pip install --user pipenv
cd C:\Users\...\desktop\projects\myproject>

然后我将我的用户群的二进制目录设置为我的 PATH并添加

C:\Users\Username\AppData\Roaming\Python36\Scripts

到我的 PATH,然后

pipenv --two install
pipenv shell

瞧!

Launching subshell in virtual environment. Type 'exit' to return.
Microsoft Windows [Version 10.0.16299.192]
(c) 2017 Microsoft Corporation. All rights reserved.
于 2018-02-22T16:01:15.573 回答