MARIO-Math-Reasoning / Super_MARIO

MIT License
228 stars 16 forks source link

Issue about requirements file #18

Closed LePanda026 closed 2 months ago

LePanda026 commented 2 months ago

I'm sorry to bring up this issue, but I need to install every package that isn't mentioned in the requirements.txt file. Could you please provide a complete requirements.txt file? :(

LePanda026 commented 2 months ago

i even have to install numpy by myself

lovecambi commented 2 months ago

For a quick reply, you can refer to the following cmd.

> git clone https://github.com/MARIO-Math-Reasoning/Super_MARIO.git
> git clone https://github.com/MARIO-Math-Reasoning/MARIO_EVAL.git
> git clone https://github.com/MARIO-Math-Reasoning/vllm.git

> cd Super_MARIO && pip install -r requirements.txt && cd ..

> cd MARIO_EVAL/latex2sympy && pip install . && cd ..
> pip install -e .

> cd ../vllm
> pip install -e .
LePanda026 commented 2 months ago

For a quick reply, you can refer to the following cmd.

> git clone https://github.com/MARIO-Math-Reasoning/Super_MARIO.git
> git clone https://github.com/MARIO-Math-Reasoning/MARIO_EVAL.git
> git clone https://github.com/MARIO-Math-Reasoning/vllm.git

> cd Super_MARIO && pip install -r requirements.txt && cd ..

> cd MARIO_EVAL/latex2sympy && pip install . && cd ..
> pip install -e .

> cd ../vllm
> pip install -e .

Thank you! I overlooked the requirements detailed in the README.md. Apologizing for that. Thanks a lot!