We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Exporting dependencies into requirements.txt files for pip would streamline setup.
pip freeze > requirements.txt
Three different files may be required since dependencies differ amongst OS (i.e. win_requirements.txt, osx_requirements.txt ...).
And then new users would just clone, set up a Python 2.7 virtual environment, and go pip install -r win_requirements.txt
pip install -r win_requirements.txt
The text was updated successfully, but these errors were encountered:
Addition of pip requirement files for dependencies
44a3974
Issue #2
Awesome, thanks for the insight. I appreciate it :]
Sorry, something went wrong.
nathanlopez
No branches or pull requests
Exporting dependencies into requirements.txt files for pip would streamline setup.
pip freeze > requirements.txt
Three different files may be required since dependencies differ amongst OS (i.e. win_requirements.txt, osx_requirements.txt ...).
And then new users would just clone, set up a Python 2.7 virtual environment, and go
pip install -r win_requirements.txt
The text was updated successfully, but these errors were encountered: