If you’re creating a debugging post, please include the following info:
Hello, My name is Julien. I am working on a project in data analysis on Python 3.11 version.
Github link: [tool.poetry]
name = “projet-mangetamain_last”
version = “0.1.0”
description = “”
authors = [“Julien VU julienvu50@gmail.com”]
readme = “README.md”
packages = [
{ include = “src” }
]
[tool.poetry.dependencies]
python = “^3.11”
requests = “^2.32.3”
streamlit = “^1.39.0”
plotly = “^5.24.1”
scikit-learn = “^1.5.2”
numpy = “^2.1.2”
[tool.poetry.dev-dependencies]
pytest = “^8.3.3”
pytest-cov = “^5.0.0”
[tool.poetry.group.dev.dependencies]
sphinx = “^8.0.2”
flake8 = “^7.1.1”
black = “^24.8.0”
[build-system]
requires = [“poetry-core”]
build-backend = “poetry.core.masonry.api”
[tool.coverage.run]
omit = [“src/main.py”]
[tool.black]
line-length = 88
My pyprojecttoml is below:
[tool.poetry]
name = “projet-mangetamain_last”
version = “0.1.0”
description = “”
authors = [“Julien VU julienvu50@gmail.com”]
readme = “README.md”
packages = [
{ include = “src” }
]
[tool.poetry.dependencies]
python = “^3.11”
requests = “^2.32.3”
streamlit = “^1.39.0”
plotly = “^5.24.1”
scikit-learn = “^1.5.2”
numpy = “^2.1.2”
[tool.poetry.dev-dependencies]
pytest = “^8.3.3”
pytest-cov = “^5.0.0”
[tool.poetry.group.dev.dependencies]
sphinx = “^8.0.2”
flake8 = “^7.1.1”
black = “^24.8.0”
[build-system]requires = [“poetry-core”]
build-backend = “poetry.core.masonry.api”
[tool.coverage.run]
omit = [“src/main.py”]
[tool.black]
line-length = 88
In streamlit cloud, I have that
" Error installing requirements. I have to submit my project next week. Click “Manage App” and consult the terminal for more details."
In the visual studio console, I have that “ERROR: Ignored the following versions that require a different python version: 1.21.2 Requires-Python >=3.7,<3.11; 1.21.3 Requires-Python >=3.7,<3.11; 1.21.4 Requires-Python >=3.7,<3.11; 1.21.5 Requires-Python >=3.7,<3.11; 1.21.6 Requires-Python >=3.7,<3.11
ERROR: Could not find a version that satisfies the requirement projet-mangetamain-last (unavailable) (from versions: none)
ERROR: No matching distribution found for projet-mangetamain-last (unavailable)”
I have had a major issue since 3 days.
I have that.
[00:13:57] ❗️ installer returned a non-zero exit code
[00:13:57] ❗️ Error during processing dependencies! Please fix the error and push an update, or try restarting the app.
[00:15:33] ❗️ Streamlit server consistently failed status checks
[00:15:33] ❗️ Please fix the errors, push an update to the git repo, or reboot the app.
When I tap "pip install requirements.txt", I had ERROR: Ignored the following versions that require a different python version: 1.21.2 Requires-Python >=3.7,<3.11; 1.21.3 Requires-Python >=3.7,<3.11; 1.21.4 Requires-Python >=3.7,<3.11; 1.21.5 Requires-Python >=3.7,<3.11; 1.21.6 Requires-Python >=3.7,<3.11
ERROR: Could not find a version that satisfies the requirement projet-mangetamain-last (unavailable) (from versions: none)
ERROR: No matching distribution found for projet-mangetamain-last (unavailable) .
I show you my requirements.txt file:
alabaster==1.0.0
altair==5.4.1
attrs==24.2.0
babel==2.16.0
black==24.8.0
blinker==1.8.2
cachetools==5.5.0
certifi==2024.8.30
charset-normalizer==3.3.2
click==8.1.7
coverage==7.6.1
docutils==0.21.2
flake8==7.1.1
gitdb==4.0.11
GitPython==3.1.43
idna==3.10
imagesize==1.4.1
iniconfig==2.0.0
Jinja2==3.1.4
joblib==1.4.2
jsonschema==4.23.0
jsonschema-specifications==2023.12.1
markdown-it-py==3.0.0
MarkupSafe==2.1.5
mccabe==0.7.0
mdurl==0.1.2
mypy-extensions==1.0.0
narwhals==1.9.1
numpy==1.23.5
packaging==24.1
pandas==2.2.3
pathspec==0.12.1
pillow==10.4.0
platformdirs==4.3.6
plotly==5.24.1
pluggy==1.5.0
-e git+https://github.com/julienvu/projet-mangetamain_last.git@05f38089049560f33ce7a5d6ccea0634809d311a#egg=projet_mangetamain_last
protobuf==5.28.2
pyarrow==17.0.0
pycodestyle==2.12.1
pydeck==0.9.1
pyflakes==3.2.0
Pygments==2.18.0
pytest==8.3.3
pytest-cov==5.0.0
python-dateutil==2.9.0.post0
pytz==2024.2
referencing==0.35.1
requests==2.32.3
rich==13.9.2
rpds-py==0.20.0
scikit-learn==1.5.2
scipy==1.14.1
six==1.16.0
smmap==5.0.1
snowballstemmer==2.2.0
Sphinx==8.0.2
sphinxcontrib-applehelp==2.0.0
sphinxcontrib-devhelp==2.0.0
sphinxcontrib-htmlhelp==2.1.0
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==2.0.0
sphinxcontrib-serializinghtml==2.0.0
streamlit==1.39.0
tenacity==9.0.0
threadpoolctl==3.5.0
toml==0.10.2
tornado==6.4.1
typing_extensions==4.12.2
tzdata==2024.2
urllib3==2.2.3
Could you help me what is the issue ? I searched a lot but it doesn't run.
How to solve that ?
Best regards,
Julien