-
Notifications
You must be signed in to change notification settings - Fork 662
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
Installation using requirements.txt without Anaconda fails #532
Comments
A pip version of the requirements file was added here #536 |
In my opinion this is not an issue at all. The project was not design to work like that (with bare I also highlight what I commented in the related PR:
|
I decided to generate the requirements file since Python already provides the package and environment management. I understand the reason why conda was chosen as a way to deal with the dependencies. The idea was to provide an alternative for people that don't want to install conda, at the same time keeping conda as the primary way to manage all the dependencies without affecting first-time contributors. However, I can see how having both ways could add complexity since someone would have to check if the requirements file has the same versions as the packages managed by conda in case conda gets updated, albeit I believe that's something that doesn't happen frequently. I agree with you and I'm going to close it. |
What is the problem?
Just invoking
pip install -r requirements.txt
doesn't work in an environment without Anaconda.For example, scikit-learn or pandas are not part of the dependencies listed.
Since not everyone uses Anaconda, offering another option could improve the project.
How can this be addressed?
An alternative file, that uses the requirements.txt file as dependency, could be provided.
[enhancement] [documentation]
The text was updated successfully, but these errors were encountered: