-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The pipenv install --deploy --system
command is no longer working.
#2183
Comments
It's required that the Pipfile.lock presents in the current folder for the |
We can probably improve the error message to let the user know what to do next. |
That would be great.
What exactly is the problem with that command now? Is there still a way to
install libraries globally?
…On Sat., 12 May 2018, 11:03 Tzu-ping Chung, ***@***.***> wrote:
We can probably improve the error message to let the user know what to do
next.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#2183 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAIHlkzz1Gorrw2QyXaNbXDOnKx7n0atks5txyQIgaJpZM4T8c5z>
.
|
@ryan-blunden I didn’t check but #2181 could help. |
I got the same error trying to run |
With |
In my case, I'm using neither |
Fixed by #2181 |
Many thanks!
…On Tue., 15 May 2018, 16:59 Dan Ryan, ***@***.***> wrote:
Closed #2183 <#2183>.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2183 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAIHlgWbDLh1KYuUITpjot7zlobsnAI1ks5ty2vdgaJpZM4T8c5z>
.
|
Hi @techalchemy, This needs to be re-opened as Tested just now with pipenv version |
I tried changing the command just to
I'm using https://gist.github.com/ryan-blunden/e27f8e48b134e041be22f07fcac943de to test. |
Hi @ryan-blunden. The Issue tracker is used for tracking changes merged into master. We already read your issue and fixed it in master, please do not use this as a forum to tell us how to run the project. |
My apologies, that's not what I was trying to do. I changed my gist to install pipenv from master ( Have I missed something? Is there a new way I tell pipenv to install system packages? What do you want me to do? Should I open another ticket? |
@ryan-blunden I think this has been fixed, and will be released soon. Please wait a few days to see if there is a new version, and open an issue if it is not fixed by then. |
Ok, thanks @uranusjr. Will do. |
@ryan-blunden with the gist you linked, you should be getting an error, but it seems like you're getting the wrong error. If you are passing If you want to do the resolution step in a container you need to drop the |
@ryan-blunden, I believe the error you were getting is because you missed adding the Pipfile, and Pipfile.lock to the directory in the container. Pipenv is unable to find your files. Try adding those files (If they are in your current working directory, you can do "COPY . /" ) to docker before running Pipenv install step. I was able to make it work with "Run Pipenv install --system" in the Dockerfile. |
👋 Hi from 2020. I found this on Google and encountered this same misleading error. The problem was indeed a missing |
I don’t think there is one. Pipenv is entirely volunteer work, so the only way to prioritise something is to do it yourself (or sponsor someone to specifically do it). |
Be sure to check the existing issues (both open and closed!).
The
pipenv install --deploy --system
command is no longer working.$ python -m pipenv.help output
Pipenv version:
'11.10.4'
Pipenv location:
'/usr/local/lib/python3.6/site-packages/pipenv'
Python location:
'/usr/local/bin/python'
Other Python installations in
PATH
:3.6
:/usr/local/bin/python3.6m
3.6
:/usr/local/bin/python3.6
3.6
:/usr/local/bin/python3.6
3.6.5
:/usr/local/bin/python
3.6.5
:/usr/local/bin/python
3.6.5
:/usr/local/bin/python3
3.6.5
:/usr/local/bin/python3
PEP 508 Information:
System environment variables:
HOSTNAME
SHLVL
PYTHON_PIP_VERSION
HOME
GPG_KEY
PATH
LANG
PYTHON_VERSION
PWD
PYTHONDONTWRITEBYTECODE
PIP_PYTHON_PATH
Pipenv–specific environment variables:
Debug–specific environment variables:
PATH
:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
LANG
:C.UTF-8
PWD
:/usr/src/app
Contents of
Pipfile
('/usr/src/app/Pipfile'):Expected result
The
pipenv install --deploy --system
command completes successfully.Actual result
Command exists with code 1 with the following output.
Steps to replicate
See the gist at https://gist.github.com/ryan-blunden/e27f8e48b134e041be22f07fcac943de and run `make build.
The text was updated successfully, but these errors were encountered: