I want to install something in a folder called "requirements.txt". The README says that pip3 install -r requirements.txt
is required.
When I run pip3 install -r requirements.txt
in python 3.10 it gives me a syntax error.
I want to install something in a folder called "requirements.txt". The README says that pip3 install -r requirements.txt
is required.
When I run pip3 install -r requirements.txt
in python 3.10 it gives me a syntax error.
The command should be run from the shell, not from within the Python interpreter.
Run it without the back ticks (`
). The README is in a Markdown format (".md"), and the ticks are used for formatting. Use an editor which can interpret Markdown files.