Readme outdated (regarding requirements_dev.txt)
See original GitHub issueThe current readme.md document says this:
virtualenv -p python3.7 venv
. venv/bin/activate
pip3 install -r requirements_dev.txt
python setup.py develop
requirements_dev.txt
does not exist anymore in the top directory, I assume setup.py
is a replacement for this.
Shouldn’t the readme be updated to say pip install .[dev]
or similar?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:7 (6 by maintainers)
Top Results From Across the Web
File "requirements/dev-requirements.txt" missing from package
I reproduced the issue with version 1.0.2 of pip, but with version 1.5.2 (which is more than 3 years old) the wheel installation...
Read more >How to state in requirements.txt a direct github source
requirements.txt allows the following ways of specifying a dependency on a ... git+git@git.myproject.org:SomeProject#egg=SomeProject (deprecated as of Jan ...
Read more >Changelog — Nox 2022.11.21 documentation
Create a requirements-dev.txt (#582) ... Remove outdated notes on Windows compatibility from the documentation. (#382) ... Fix missing links in README.rst.
Read more >GraceDB Client - LIGO GitLab
The Gravitational-wave Candidate Event Database (GraceDB) is a web service designed for aggregating and communicating information about candidate events from ...
Read more >Files · master · usgs / MetadataWizard · GitLab
README.md ... metadata creation for spatial and non-spatial data sets. ... between different records or other tools including XML-Notepad and text editors.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Looked over there, it does not have any notable additions to what I had in mind other than
-e
, which is “editable mode”, something I had not seen before, but after looking it up proves to be an essential flag to add to the dev setup section of the readme.After I’ve confirmed
pip install -e .[dev]
to be working (on a Linux install), I’ll submit a PR with that amendment plus some note about developing on windows (again, #363)That will be great. Thanks! IMO we can reference the installation and development guide similar to here: https://github.com/ethereum/eth-utils#ethereum-utils . I think @carver can give more useful inputs on the document than me. 🙏