| | #!/bin/bash |
| |
|
| | set -e |
| |
|
| | |
| | eval "$(conda shell.bash hook)" |
| |
|
| | conda create --name svgrender python=3.10 --yes |
| | conda activate svgrender |
| | echo "The conda environment was successfully created" |
| |
|
| | |
| | conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=11.3 -c pytorch --yes |
| | echo "Pytorch installation is complete. version: 1.12.1" |
| |
|
| | |
| | conda install xformers -c xformers --yes |
| | echo "xformers installation is complete." |
| |
|
| | |
| | pip install hydra-core omegaconf |
| | pip install freetype-py shapely svgutils |
| | pip install opencv-python scikit-image matplotlib visdom wandb BeautifulSoup4 |
| | pip install triton numba |
| | pip install numpy scipy scikit-fmm einops timm fairscale==0.4.13 |
| | pip install accelerate transformers safetensors datasets |
| | pip install easydict scikit-learn pytorch_lightning==2.1.0 webdataset |
| | echo "The basic dependency library is installed." |
| |
|
| | |
| | pip install ftfy regex tqdm |
| | pip install git+https://github.com/openai/CLIP.git |
| | echo "CLIP installation is complete." |
| |
|
| | |
| | pip install diffusers==0.20.2 |
| | echo "Diffusers installation is complete. version: 0.20.2" |
| |
|
| | |
| | git clone https://github.com/BachiLi/diffvg.git |
| | cd diffvg |
| | git submodule update --init --recursive |
| |
|
| | |
| | echo "Installing system dependencies for DiffVG..." |
| | sudo apt update |
| | sudo apt install -y cmake ffmpeg build-essential libjpeg-dev libpng-dev libtiff-dev |
| |
|
| | conda install -y -c anaconda cmake |
| | conda install -y -c conda-forge ffmpeg |
| | pip install svgwrite svgpathtools cssutils torch-tools |
| |
|
| | |
| | python setup.py install |
| | echo "DiffVG installation is complete." |
| |
|
| | |
| | echo "The running environment has been successfully installed!!!" |
| |
|