-
Notifications
You must be signed in to change notification settings - Fork 39
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
vcruntime140_1.dll is missing #48
Comments
You aren't supposed to run those files directly as they need some environment setup. Rather there are files installed in your |
thank you so much. C:\Users\MyUsername\AppData\Local\Programs\Python\Python38\Scripts\pyqt5designer.exe and not : C:\Users\MyUsername\AppData\Local\Programs\Python\Python38\Lib\site-packages\pyqt5_tools\Qt\bin\designer.exe which is giving in different tutorials ( personally I see it in a Youtube tutorial ) I understand that after rereading the readme but sincerely it wasn't so clear when you write just : ( Scripts\pyqt5designer.exe ) I think you should add an example for the path like this in the readme : C:\Users\MyUsername\AppData\Local\Programs\Python\Python38\Scripts\pyqt5designer.exe |
Which you are not doing. The path you share isn't a thing you should ever have to write. I should though link to https://bit.ly/py-env and later keep referencing In your case it would be something like the following when you are in some project directory. At least for how I handle my envs, there are many many options which is why I don't really want to start covering them. system vs. env, bin vs. scripts, activating vs. not, in-project envs vs. single-location-for-all-envs, using wrapper tools for your envs vs. not, poetry, pipenv, etc etc... py -3.8 -m venv venv
venv/scripts/pip install --upgrade pip setuptools wheel
venv/scripts/pip install pyqt5-tools
venv/scripts/pyqt5designer I'll see if I can come up with some improvements though. |
ok thanks a lot so the virtualenv is used to manage the projects which need different versions of dependencies what I understand from your answer if we don't use virtualenv the path can change (bin or script ) wasn't it ?? |
In an env (virtualenv or venv) on Windows you get Outside an env... there'll be even more variability. On Windows you might have a system installation at Not using a venv is basically either lazy or an optimization (or, well, you don't know about it yet And yes, this is a problem in the Python ecosystem. These things are worth a whole site themselves and I haven't gotten around to finding a solid site that I want to link from everywhere. That's the real solution. Each individual project stops describing how to install itself and instead links to a common place that walks you through a quick setup and also discusses all the myriad of options. |
That was so useful thank you so much |
FYI, if you want to talk through this interactively then #python is great. I've been keeping a bit busy lately so you won't always find me active but there are lots of people that can help find a useful path through all of this. I'll go ahead and leave this open until I either implement the readme changes or document them in a dedicated ticket. |
Hi there, Are you planning to distribute launchers for Qt Assistant and Qt Linguist as well as Qt Designer ? Thanks, |
Hi there,
I'm trying to open designer from :
C:\Users\MyUsername\AppData\Local\Programs\Python\Python38\Lib\site-packages\pyqt5_tools\Qt\bin\designer.exe
but I'm getting
missing vcruntime140_1.dll
PS:
Python 3.8.2
pyqt 5.15.0
thanks.
The text was updated successfully, but these errors were encountered: