I am trying to have execute Cartoon-StyleGan2 on my Mac OS, but it shows the error when I start the code. I have tried few ways like downgrading my python version, executing in python environment, as well as checking my env have torch installed properly, but still unable to run the code properly. Is it because the torch version is incompatible to the original project which was 1.8.0?
Tried Solutions:
- Tried to downgrade python to 3.8.0 because the project seems to be tested in PyTorch 1.8.0, CUDA 11.1. can't downgrade anymore because python 3.8.0 is deprecated.
- Reinstalled torch through official site under OS with
pip3 install torch torchvision
- I use pip list and PyTorch already did show in my list, it is shown as torch 2.6.0
- use pip install torch==1.8.0 torchvision==0.9.0 torchaudio==0.8.0 on version 3.9.3 ERROR: Could not find a version that satisfies the requirement
torch==1.8.0 (from versions: 1.9.0, 1.10.0, 1.10.1, 1.10.2, 1.11.0, 1.12.0, 1.12.1, 1.13.0, 1.13.1, 2.0.0, 2.0.1, 2.1.0, 2.1.1, 2.1.2, 2.2.0, 2.2.1, 2.2.2, 2.3.0, 2.3.1, 2.4.0, 2.4.1, 2.5.0, 2.5.1, 2.6.0)
- When use python to execute it works
import torch print(torch.__version__) -- Shows 2.6.0
- Using uv python environment to setup
requirements.txt
beautifulsoup4==4.13.3
bokeh==3.4.3
certifi==2025.1.31
charset-normalizer==3.4.1
contourpy==1.3.0
filelock==3.18.0
fsspec==2025.3.2
ftfy==6.3.1
gdown==5.2.0
idna==3.10
Jinja2==3.1.6
MarkupSafe==3.0.2
mpmath==1.3.0
networkx==3.2.1
numpy==2.0.2
packaging==24.2
pandas==2.2.3
pillow==11.1.0
PySocks==1.7.1
python-dateutil==2.9.0.post0
pytz==2025.2
PyYAML==6.0.2
regex==2024.11.6
requests==2.32.3
six==1.17.0
soupsieve==2.6
sympy==1.13.1
torch==2.6.0
torchvision==0.21.0
tornado==6.4.2
tqdm==4.67.1
typing_extensions==4.13.0
tzdata==2025.2
urllib3==2.3.0
wcwidth==0.2.13
xyzservices==2025.1.0
Error Details on Terminal
I am trying to have execute Cartoon-StyleGan2 on my Mac OS, but it shows the error when I start the code. I have tried few ways like downgrading my python version, executing in python environment, as well as checking my env have torch installed properly, but still unable to run the code properly. Is it because the torch version is incompatible to the original project which was 1.8.0?
https://github/happy-jihye/Streamlit-Tutorial
Tried Solutions:
- Tried to downgrade python to 3.8.0 because the project seems to be tested in PyTorch 1.8.0, CUDA 11.1. can't downgrade anymore because python 3.8.0 is deprecated.
- Reinstalled torch through official site under OS with
pip3 install torch torchvision
- I use pip list and PyTorch already did show in my list, it is shown as torch 2.6.0
- use pip install torch==1.8.0 torchvision==0.9.0 torchaudio==0.8.0 on version 3.9.3 ERROR: Could not find a version that satisfies the requirement
torch==1.8.0 (from versions: 1.9.0, 1.10.0, 1.10.1, 1.10.2, 1.11.0, 1.12.0, 1.12.1, 1.13.0, 1.13.1, 2.0.0, 2.0.1, 2.1.0, 2.1.1, 2.1.2, 2.2.0, 2.2.1, 2.2.2, 2.3.0, 2.3.1, 2.4.0, 2.4.1, 2.5.0, 2.5.1, 2.6.0)
- When use python to execute it works
import torch print(torch.__version__) -- Shows 2.6.0
- Using uv python environment to setup
requirements.txt
beautifulsoup4==4.13.3
bokeh==3.4.3
certifi==2025.1.31
charset-normalizer==3.4.1
contourpy==1.3.0
filelock==3.18.0
fsspec==2025.3.2
ftfy==6.3.1
gdown==5.2.0
idna==3.10
Jinja2==3.1.6
MarkupSafe==3.0.2
mpmath==1.3.0
networkx==3.2.1
numpy==2.0.2
packaging==24.2
pandas==2.2.3
pillow==11.1.0
PySocks==1.7.1
python-dateutil==2.9.0.post0
pytz==2025.2
PyYAML==6.0.2
regex==2024.11.6
requests==2.32.3
six==1.17.0
soupsieve==2.6
sympy==1.13.1
torch==2.6.0
torchvision==0.21.0
tornado==6.4.2
tqdm==4.67.1
typing_extensions==4.13.0
tzdata==2025.2
urllib3==2.3.0
wcwidth==0.2.13
xyzservices==2025.1.0
Error Details on Terminal
Share Improve this question edited 7 hours ago Chuah Sze Wei asked yesterday Chuah Sze WeiChuah Sze Wei 771 silver badge6 bronze badges 3 |1 Answer
Reset to default 1new answer
I totally fot to check for what. You want to simply follow some older tutorial about style GAN.
You don't need to follow that so literally! Of course such a task will be totally possible with the newest versions of torch and the rest of the packages.
-- ah I see - the checkpoint files - they might be not compatible with too new versions ... we don't know - only trying will give the answer.
Or - I would recommend to search for a newer tutorial then ...
Simply use the newest packages. Use this script:
#!/usr/bin/env bash
set -e # Stop on error
echo "
pip freeze > requirements.txt
and post the result?cat requirements.txt
? (the last command is assuming you are on Linux. If you are in windows, just post the content of requirements.txt). – Gwang-Jin Kim Commented yesterday