We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The number of files exceeded settings.DATA_UPLOAD_MAX_NUMBER_FILES.
The text was updated successfully, but these errors were encountered:
Hello,
You can always increase the size of the file. Would mind telling what are you trying to import and whats the size of the file?
If you're running Label Studio via the command line:
DATA_UPLOAD_MAX_NUMBER_FILES=1000 label-studio start
Replace 1000 with the maximum number of files you want to allow in a single upload.
1000
Thank you, Abu
Comment by Abubakar Saad Workflow Run
Sorry, something went wrong.
win system ,pip installs label-studio ,Running the following startup command results in an error
DATA_UPLOAD_MAX_NUMBER_FILES=1000 label-studio start --port 8090 --data-dir D:\MOMO\label-studio
How to solve the problem of limiting the number of files uploaded
This syntax is mostly for Unix-based systems, but not for Windows.
Instead try this:
Open Command Prompt: Press Win + R, type cmd, and press Enter.
Win + R
cmd
Set the Environment Variable: Use the set command to set the environment variable for the current session:
set
set DATA_UPLOAD_MAX_NUMBER_FILES=1000
(Replace 1000 with the maximum number of files you want to allow.)
Start Label Studio:
label-studio start --port 8090 --data-dir D:\MOMO\label-studio
No branches or pull requests
The number of files exceeded settings.DATA_UPLOAD_MAX_NUMBER_FILES.
The text was updated successfully, but these errors were encountered: