skip to Main Content

Docker – Failed building wheel for twisted-iocpsupport

I'm trying to dockerize my django project. When i run "docker build -t django_project" i get following error: 18.82 Building wheel for twisted-iocpsupport (pyproject.toml): started 19.23 Building wheel for twisted-iocpsupport (pyproject.toml): finished with status 'error' 19.24 error: subprocess-exited-with-error 19.24 19.24…

VIEW QUESTION

Reactjs – Using Fetch in REACT for PUT/PATCH doesn't work for me

Hello in my React App I use this specific comportement to handle modification (status change actived/deactived) const handleActifEspece = (index, statutActif) => { let especeAActiver = especes.find(espece => espece.id === index) especeAActiver.actif = statutActif console.log(JSON.stringify(especeAActiver)) fetch(`http://localhost:8000/api/especes/${index}`, { method: 'PUT', headers:…

VIEW QUESTION
Back To Top
Search