Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows Anaconda Installation Docs missing modules #11

Open
seandearnaley opened this issue May 19, 2022 · 1 comment
Open

Windows Anaconda Installation Docs missing modules #11

seandearnaley opened this issue May 19, 2022 · 1 comment

Comments

@seandearnaley
Copy link

seandearnaley commented May 19, 2022

I've been following the instructions to install on windows with anaconda, but I feel there is a missing step or something because once have the conda activated, and go to run python disco.py, I get a variety of module not found errors-- I realized I had to run pip install -r requirements.txt in the conda before it would work... also step 4: execute the test run has another conda activate discodiffusion line which is already activated at that point--- perhaps that line was supposed to be pip install -r requirements.txt , sorry Python is new to me.

I also had to run this command because I was getting CUDA errors:
conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch

@seandearnaley seandearnaley changed the title Windows Anaconda Installation Docs issue Windows Anaconda Installation Docs missing modules May 19, 2022
@philpax
Copy link

philpax commented Jun 7, 2022

I had the same experience. For anyone else reading, the order I would suggest is:

conda env create -f environment.yml
conda activate discodiffusion
pip install -r requirements.txt
git clone https://github.com/facebookresearch/pytorch3d.git
cd pytorch3d
python setup.py install
cd ..
python disco.py

Make sure to install pytorch3d after running pip install; if you do it the other way, pip will override the pytorch3d you installed.

entmike pushed a commit that referenced this issue Jun 8, 2022
Fix error loading missing secondary model
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants