-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
get-poetry.py to install from git #968
Comments
What's wrong with?
|
No setup.py for one. |
Ohhh... |
Once I have the wheel (which I built along the lines outlined), how do I get |
You will use pip to install the wheel. But all this feels a bit strange. What exactly are you trying to achieve? Help in development? Try a new feature? |
I am looking to use: #757. |
I am not specifically trying to run
|
For others who find this - I'm currently using the workaround described by @pmav99
#!/bin/bash
set -ex
pip install poetry
git clone --branch develop --single-branch https://github.com/sdispater/poetry
cd poetry
poetry build
pip install dist/poetry*.whl |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This is now possible using the new installer script |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Question
How do I get
get-poetry.py
to install the newest version of poetry fromgit
? i.e. to install something even newer than the newest pre-release release on GH?The text was updated successfully, but these errors were encountered: