1.Windows 环境
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
conda create --name swift python=3.10 conda activate swift git clone https://github.com/modelscope/swift.git cd swift pip install -e .[all] pip install -r requirements/framework.txt -U pip install -r requirements/llm.txt -U pip install oss2 pip install datasets==2.18.0 set CUDA_VISIBLE_DEVICES=0,1,2,3 swift web-ui |
系统:Windows 11
python 使用3.10 版本
datasets 使用2.18.0
只要 swift web-ui 能启动网页,基本上都正常了。
查看 torch 版本
1 2 |
python -c "import torch; print(torch.__version__)" 2.3.1+cu121 |
如果不对,可以重新安装 torch
1 |
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121 |
2.WSL2 环境
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
conda create -yn swift python=3.10 conda activate swift git clone https://github.com/modelscope/swift.git cd swift pip install -e '.[all]' pip install -r requirements/framework.txt -U pip install -r requirements/llm.txt -U pip install importlib_metadata pip install einops pip install oss2 pip install addict pip install datasets==2.18.0 CUDA_VISIBLE_DEVICES=0,1,2,3 WEBUI_SERVER=0.0.0.0 WEBUI_PORT=6006 swift web-ui |
查看 torch 版本
1 2 |
python -c "import torch; print(torch.__version__)" 2.3.1+cu121 |
系统:Windows 11, WSL2
python 使用3.10 版本
datasets 使用 2.18.0
只要 swift web-ui 能启动网页,基本上都正常了。