Skip to content
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

Deprecated branches in requirements.txt #4

Open
Jaeyoung-Lim opened this issue Jun 18, 2024 · 2 comments
Open

Deprecated branches in requirements.txt #4

Jaeyoung-Lim opened this issue Jun 18, 2024 · 2 comments

Comments

@Jaeyoung-Lim
Copy link

Jaeyoung-Lim commented Jun 18, 2024

Problem Description
There seems to be some outdated branches in requirements.txt

When running

pip3 install -r requirements.txt

For example, the line

# Submitit with experimental branch
git+https://github.com/facebookincubator/submitit@escape_all#egg=submitit
results in the error message

Collecting submitit
  Cloning https://github.com/facebookincubator/submitit (to revision escape_all) to /tmp/pip-install-fkqwmvx9/submitit
  Running command git clone -q https://github.com/facebookincubator/submitit /tmp/pip-install-fkqwmvx9/submitit
  WARNING: Did not find branch or tag 'escape_all', assuming revision or ref.
  Running command git checkout -q escape_all
  error: pathspec 'escape_all' did not match any file(s) known to git

@MikeS96
Copy link
Contributor

MikeS96 commented Jun 18, 2024

Hi @Jaeyoung-Lim,

Indeed there is a problem with the submitit package. That branch was deleted (potentially merged) into the main branch. That being said, it should not be blocking as this branch was mainly used to run multiple jobs in HPC clusters. I suggest trying to install the plain submitit version, i.e.,

pip install submitit

If you have problem with the stable version, try with the one we used.

pip install submitit==1.4.5

Let us know how it goes!

@Jaeyoung-Lim
Copy link
Author

@MikeS96 Thanks! That was the only thing that needed to fix for a successful install of dependencies.

I have incorporated this in #5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants