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
When i run ‘sparse submit’.
I got an error Fatal error: put() encountered an exception while uploading 'virtualenvs/wordcount.txt'
so i set a breakpoint at update_virtualenv.py line 52
forrequirements_pathinrequirements_paths:
puts("Uploading {} to temporary file.".format(requirements_path))
temp_req=run("mktemp /tmp/streamparse_requirements-XXXXXXXXX.txt") # this lineput(requirements_path, temp_req)
I got the value of temp_req, it was Docker machine "boot2docker-vm" does not exist. Use "docker-machine ls" to list machines. Use "docker-machine create" to add a new one. /tmp/streamparse_requirements-XXXXXXXXX.txt /bin/bash: shell_session_update: command not found
It contain some error info.
Then i set the value temp_req= '/tmp/streamparse_requirements-XXXXXXXXX.txt'.
It work!!
By the way,
When i got the errorFatal error: put() encountered an exception while uploading 'virtualenvs/wordcount.txt'
I must remove the '/tmp/streamparse_requirements-XXXXXXXXX.txt' file before i run sparse submit.
The text was updated successfully, but these errors were encountered:
When i run ‘sparse submit’.
I got an error
Fatal error: put() encountered an exception while uploading 'virtualenvs/wordcount.txt'
so i set a breakpoint at
update_virtualenv.py line 52
I got the value of
temp_req
, it wasDocker machine "boot2docker-vm" does not exist. Use "docker-machine ls" to list machines. Use "docker-machine create" to add a new one. /tmp/streamparse_requirements-XXXXXXXXX.txt /bin/bash: shell_session_update: command not found
It contain some error info.
Then i set the value
temp_req= '/tmp/streamparse_requirements-XXXXXXXXX.txt'
.It work!!
By the way,
When i got the error
Fatal error: put() encountered an exception while uploading 'virtualenvs/wordcount.txt'
I must remove the
'/tmp/streamparse_requirements-XXXXXXXXX.txt'
file before i runsparse submit
.The text was updated successfully, but these errors were encountered: