Slackbot
02/28/2023, 7:42 PMSylvain LeBeux
03/01/2023, 2:40 AMSean
03/02/2023, 3:31 AMlarme (shenyang)
03/02/2023, 4:24 PMconda 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 successfulSylvain LeBeux
03/02/2023, 4:37 PMpip.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
larme (shenyang)
03/02/2023, 5:20 PM