This message was deleted.
# ask-for-help
s
This message was deleted.
🏁 1
s
update for those of you who would run into the same problem. I was trying to install bentoml 1.0.15 because of the starlette 0.25.0 bug However, starlette 0.24.0 is not available on ventura either. So, the solution is to pin starlette to 0.23.0 instead, and works the same as the previous workaround (at least for me)
s
@larme (shenyang)
l
@Sylvain LeBeux Hi Sylvain, could you help me to reproduce this problem? I tried installing bentoml=1.0.15 on macos 13.2.1 with the following procedures: 1.
conda create -n test-bentoml
2.
conda activate test-bentoml
3.
conda install -c anaconda pip
4.
pip install bentoml==1.0.15
and the installation process is successful. I also tried virtualenv way like:
python3 -m venv && source venv/bin/activate
then
pip install bentoml==1.0.15
and the installation process is also successful
s
Yes, it works ! I have a private pypi conf in my
pip.conf
and this was in fact causing the problem ... I removed it and now it works correctly, I did not suspect since I had :
Looking in indexes: https://pypi.python.org/pypi, https://my_private_pypi/pypi/simple/
and then the error, so I thought it was actually looking into pypi first, but it did not. I am sorry for losing your time on this, and thanks a lot to help me figure out what was causing my problem
l
No problem, thanks for your feedback!
gratitude thank you 1