-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Pipenv fail installation - Add documentation #822
Comments
Better solution would be to just release 1.0.0 of black, so that it can be installed normally. What's the status on that? @ambv |
We're hoping to release a stable release in the next few days. |
Awesome work thank you, I enjoy this tool very much! Saves lots of time....
…On Mon, May 6, 2019 at 1:08 AM Jelle Zijlstra ***@***.***> wrote:
We're hoping to release a stable release in the next few days.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#822 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AA5VOZUVEOVV4YVHZFEAVCLPT7RP5ANCNFSM4HKXZWEA>
.
--
Almog Cohen
<https://htmlsig.com/signatures/01ADE8F6/edit>
[image: Linkedin] <http://linkedin.com/in/almogcohen>
*US: (415) 413-6714*
|
Any update on that 1.0.0? 😄 |
@rpdelaney See this issue: #517 |
Do you have an update plan about this issue? my solution $ pipenv install --dev black==19.3b0 |
How about a general update to the documentation? Common installation options using |
I would be interested in doing a general update of the documentation to make it easier to get started in using Black. The only issue is that my main laptop is out of action, so I am using an old Ubuntu laptop 🤣 |
This is still an issue |
This happens because pipenv does not look for beta releases and black only has beta releases microsoft/vscode-python#5171 |
How? Enable `allow_prereleases` in Pipfile. Why? After installing dependencies, locking fails due to 'black' pkg's prerelease version. 'black' has not released a stable version yet. Ref: - psf/black#517 - psf/black#822
This is a problem because that adds an option that allows pre-releases for any dependency. IMO this comment above is currently the best solution: #822 (comment) |
PS C:\Users\user\Documents\GitHub\my-pytest\api\my_pytest_app> pipenv install --dev --pre black Not sure how to resolve this , have tried all different commands mentioned above. Can someone help |
Praveen, it's hard to help you without you specifying versions of all things. I suspect you're trying to install Black with Python 2. |
Hi My pip file: [packages] [dev-packages] [requires] [pipenv] thanks |
|
I see there is a release now. Still cannot install with pipenv unless I set the version like in the above comments. |
We have a stable release now, which appears to solve the original problem in this issue. If you're still having problems using Black with pipenv, please open a new issue explaining exactly what is going wrong. |
At last! Thank you 🙏😊 Absolutely useful project for the entire community! |
The first stable release was in January actually :) |
Oops, didn't notice...Too much Typescript lately 😉 |
Operating system: OSX Mohaje latest release
Python version: 3.7.2
Pipenv version: 2018.11.26
Black version: Not relevant
Does also happen on master: Not relevant, it has to do with PyPi
Seems like a very cool tool! But seems like it is not very friendly for users trying to install it using
pipenv
.Simply running
pipenv install black
fails, probably due to what mentioned here #517. Aspipenv
an the official tool, the first thing people run ispipenv install black
and the first thing they see is a weird failure.You mention
pip install black
in the documentation, so I recommend simply adding instructions for how to install withpipenv
so people don't have to google around until they find the relevant issue.The text was updated successfully, but these errors were encountered: