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

launch depends on flowdas-meta #34

Open
t8ja opened this issue Dec 25, 2022 · 5 comments
Open

launch depends on flowdas-meta #34

t8ja opened this issue Dec 25, 2022 · 5 comments

Comments

@t8ja
Copy link

t8ja commented Dec 25, 2022

OS: Arch Linux

pip install launch
The conflict is caused by:
    launch 0.1.3 depends on flowdas-meta<1.1 and >=1.0.1
    launch 0.1.2 depends on flowdas-meta<1.1 and >=1.0.1
    launch 0.1.1 depends on flowdas-meta<1.1 and >=1.0.1
    launch 0.1.0 depends on flowdas-meta<1.1 and >=1.0.1

pip install flowdas-meta
ERROR: Could not find a version that satisfies the requirement flowdas-meta (from versions: none)
ERROR: No matching distribution found for flowdas-meta

https://libraries.io/pypi/flowdas-meta
https://pypi.org/search/?q=flowdas-meta

@falon-go-weeee
Copy link

falon-go-weeee commented Dec 26, 2022

if you are using fast stable diffusion by TheLastBen colab notebook then
replace import launch with import ./content/gdrive/MyDrive/sd/stable-diffusion-webui/launch in extensions in /content/gdrive/MyDrive/sd/stable-diffusion-webui/extensions/depthmap2mask/install.py file.

@t8ja
Copy link
Author

t8ja commented Dec 26, 2022

Only local installs. At first I tried automatic1111's install in the py virtual environment, then I found the docker version with different UIs, using the same "auto" UI, with the same error, but now I have to figure out how to use docker i.e. see the files, cause I can't see them in the directory.. but that's a different problem.

In summary, two types of local install. I'm not well versed in this area.

@t8ja t8ja changed the title launch dependency missing, pip install launch launch, flowdas-meta dependency missing Dec 27, 2022
@t8ja t8ja changed the title launch, flowdas-meta dependency missing launch depends on flowdas-meta Dec 28, 2022
@t8ja
Copy link
Author

t8ja commented Dec 29, 2022

This "launch" module just runs a git clone command in bash, puts the folder in "repositories/midas" and renames the folder to "midas".
Did it really take me this long to figure it out.

@Jammers33
Copy link

Jammers33 commented Sep 30, 2023

Just in case others come here looking for an answer that may be related to "launch' for windows
I like you was having many issues with 'pip install launch' and getting a reporting error of
"ERROR: Cannot install launch==0.1.0, launch==0.1.1, launch==0.1.2 and launch==0.1.3
because these package versions have conflicting dependencies. The conflict is caused by:
launch 0.1.3 depending on ,
flowdas-meta<1.1 and >=1.0.1
launch 0.1.2 depends on
flowdas-meta<1.1 and >=1.0.1
launch 0.1.1 depends on
flowdas-meta<1.1 and >=1.0.1
launch 0.1.0 depends on
flowdas-meta<1.1 and >=1.0.1
To fix this you could try to: 1. loosen the range of package versions you've specified 2. remove package versions to allow pip attempt to solve the dependen
I went ahead and downloaded the Downloading launch-0.1.3.tar.gz (10 kB) Downloading launch-0.1.2.tar.gz (10 kB) Downloading launch-0.1.1.tar.gz (10 kB) Downloading launch-0.1.0.tar.gz (7.2 kB) that the call was asking for, upon examination of the setup.py in the folder 'launch-0.1.3' the first line of 'install_requires' had the call to download flowdas to a defunct https://bitbucket.org/flowdas/launch, it simply is nonexistent and there are a lot of people that can't download it, but still need it.
I went ahead and emailed the author. After all that I went and updated my flowdas to 0.5.0 https://pypi.org/project/flowdas/
'pip install flowdas'
installed it then I went back to setup.py and changed the first three lines to update to
install_requires = [
'flowdas>=0.5.0,<0.6.0',
'click>=6.7,<6.8',
'PyYAML>=3.12,<3.13',
, to reflect all the new updated versions to be installed that includes all three lines, in the root folder of launch-0.1.3 I executed the
pip install -e .
, and wouldn't you know it installed, all of it...
Now I am not responsible for what happens if anything to your machine, as this works for me and my application and it may not work for you, best to do everything you can in a VENV. Hope that helps! bingo, bongo, bango, you're the rock star, get after it!

@suxiantian
Copy link

Just in case others come here looking for an answer that may be related to "launch' for windows I like you was having many issues with 'pip install launch' and getting a reporting error of "ERROR: Cannot install launch==0.1.0, launch==0.1.1, launch==0.1.2 and launch==0.1.3 because these package versions have conflicting dependencies. The conflict is caused by: launch 0.1.3 depending on , flowdas-meta<1.1 and >=1.0.1 launch 0.1.2 depends on flowdas-meta<1.1 and >=1.0.1 launch 0.1.1 depends on flowdas-meta<1.1 and >=1.0.1 launch 0.1.0 depends on flowdas-meta<1.1 and >=1.0.1 To fix this you could try to: 1. loosen the range of package versions you've specified 2. remove package versions to allow pip attempt to solve the dependen I went ahead and downloaded the Downloading launch-0.1.3.tar.gz (10 kB) Downloading launch-0.1.2.tar.gz (10 kB) Downloading launch-0.1.1.tar.gz (10 kB) Downloading launch-0.1.0.tar.gz (7.2 kB) that the call was asking for, upon examination of the setup.py in the folder 'launch-0.1.3' the first line of 'install_requires' had the call to download flowdas to a defunct https://bitbucket.org/flowdas/launch, it simply is nonexistent and there are a lot of people that can't download it, but still need it. I went ahead and emailed the author. After all that I went and updated my flowdas to 0.5.0 https://pypi.org/project/flowdas/ 'pip install flowdas' installed it then I went back to setup.py and changed the first three lines to update to install_requires = [ 'flowdas>=0.5.0,<0.6.0', 'click>=6.7,<6.8', 'PyYAML>=3.12,<3.13', , to reflect all the new updated versions to be installed that includes all three lines, in the root folder of launch-0.1.3 I executed the pip install -e . , and wouldn't you know it installed, all of it... Now I am not responsible for what happens if anything to your machine, as this works for me and my application and it may not work for you, best to do everything you can in a VENV. Hope that helps! bingo, bongo, bango, you're the rock star, get after it!
if I import launch,it will response:ImportError: cannot import name 'meta' from 'flowdas' ,how can I solve it.

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

4 participants