intel-analytics / ipex-llm

Accelerate local LLM inference and finetuning (LLaMA, Mistral, ChatGLM, Qwen, Baichuan, Mixtral, Gemma, Phi, etc.) on Intel CPU and GPU (e.g., local PC with iGPU, discrete GPU such as Arc, Flex and Max); seamlessly integrate with llama.cpp, Ollama, HuggingFace, LangChain, LlamaIndex, DeepSpeed, vLLM, FastChat, Axolotl, etc.
Apache License 2.0
6.26k stars 1.23k forks source link

Facing issue when python3.9 -m pip install bigdl-chronos[pytorch]==2.4.0 #11396

Open SjeYinTeoIntel opened 1 week ago

SjeYinTeoIntel commented 1 week ago

image

wonder how should i install this bigdl-chronos[pytorch] to avoid this error?

plusbang commented 1 week ago

Hi, @SjeYinTeoIntel , I failed to reproduce this error. I could run successfully the following steps:

conda create -n install-test python=3.9 setuptools
conda activate install-test
pip install bigdl-chronos[pytorch]==2.4.0
pip install psutil==5.9.5
SjeYinTeoIntel commented 19 hours ago

Hi, The issue is happened when "python3.9 -m pip install --upgrade pip". pip version will upgrade to 24.1. Then will facing above issue.

If i fix my pip version as 24.0 as below command, then no issue. python3.9 -m pip install --upgrade pip==24.0.

Could you try to use latest pip version to see any issue?