From 11effdab0e304161c43432e13c91f21adcb27990 Mon Sep 17 00:00:00 2001 From: Francesco Saverio Zuppichini Date: Tue, 27 Jun 2023 18:27:08 +0200 Subject: [PATCH 1/2] Update README.md Better installation doc in README --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index e59be83..eddf040 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,19 @@ If you have CUDA graphic card, please follow the requirements of [NVlabs/stylegan3](https://github.com/NVlabs/stylegan3#requirements). +The usual installation steps involved the following commands, they should set up the correct CUDA version + +``` +conda env create python=3.7 -f environment.yml +conda activate stylegan3 +``` + +Then install the additional requirements + +``` +pip install -r requirements +``` + Otherwise (for GPU acceleration on MacOS with Silicon Mac M1/M2, or just CPU) try the following: ```sh From 9b1c595e5bc58de15a7c67f3c1191b34053bc3ab Mon Sep 17 00:00:00 2001 From: Francesco Saverio Zuppichini Date: Tue, 27 Jun 2023 18:28:16 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eddf040..b26a764 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ If you have CUDA graphic card, please follow the requirements of [NVlabs/stylegan3](https://github.com/NVlabs/stylegan3#requirements). -The usual installation steps involved the following commands, they should set up the correct CUDA version +The usual installation steps involve the following commands, they should set up the correct CUDA version and all the python packages ``` conda env create python=3.7 -f environment.yml