We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I generated the conda environment using environment.yaml, and activated it in my docker console. When I try to run txt2img.py, I get the
ModuleNotFoundError: no module named "ldm".
According to the tutorial I followed, this capability should have been set up by creating the conda env. What am I missing?
The text was updated successfully, but these errors were encountered:
While txt2img worked fine for me, img2img was presenting this error when running. The fix is to insert this line somewhere above the ldm import:
txt2img
img2img
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
Sorry, something went wrong.
@naturalethic thank you so much, this solved it!
No branches or pull requests
I generated the conda environment using environment.yaml, and activated it in my docker console. When I try to run txt2img.py, I get the
ModuleNotFoundError: no module named "ldm".
According to the tutorial I followed, this capability should have been set up by creating the conda env. What am I missing?
The text was updated successfully, but these errors were encountered: