You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you look at the requirements.txt file, you'll see that many of the packages are using location specifier instead of versions directly. These location specifier are, generally, used to install versions from a local path. Which in case of new machine would not be possible.
So to resolve this issue the requirements.txt file should only contain version numbers.
To reproduce the error run the following command on a terminal.
pip install -r requirements.txt
The text was updated successfully, but these errors were encountered:
If you look at the
requirements.txt
file, you'll see that many of the packages are using location specifier instead of versions directly. These location specifier are, generally, used to install versions from a local path. Which in case of new machine would not be possible.So to resolve this issue the
requirements.txt
file should only contain version numbers.To reproduce the error run the following command on a terminal.
The text was updated successfully, but these errors were encountered: