This question already has answers here:
Where does pip install its packages?
(8 answers)
Closed last month.
I loaded QtPy5 and QtPy5-tools successfully using pip on VSCode. But I cant for the life of me find it on my system.
Is it an .exe program?
where should I be looking please and what is it called
TIA
you just hold ctrl key and move your cursor on the QtPy5 and then click it it should take you the the file location of the QtPy5. i think this should work.
Related
This question already has an answer here:
How does Python / pip handle conflicting transitive dependencies?
(1 answer)
Closed 1 year ago.
I used discord.py and r6sapi.
But two packages used aiohttp.
discord.py needs aiohttp<3.8.0, >=3.6.0
r6sapi needs aiohttp<3.0.0, >=2.3.3
how to use two packages same time?
if you want to run multiple versions of python on your machine and switch between them, I think the information in the link below might help
https://realpython.com/intro-to-pyenv/
This question already has answers here:
How to obfuscate Python code effectively? [duplicate]
(22 answers)
How can I make a Python script standalone executable to run without ANY dependency? [duplicate]
(19 answers)
Closed 2 years ago.
I have multiple python files and I want to install them as a service on the client's server.
The problem is that I dont want the client to have access to my code so I need to generate something like exe but for linux and as a service.
I thought about using cython but I wander if there is a easier way to do that. Of course I also have some packages I need to include in this "wrapping"
This question already has answers here:
Unable to install pygame on Python via pip (Windows 10)
(6 answers)
Installing Pygame on 64-bit Windows 7 and 64-bit Python 2.7
(3 answers)
Closed 2 years ago.
I am doing a project for school in which I have to code my own game from scratch. It's pretty damn awesome, but I cannot seem to get pygame installed and working on my home computer (meaning I can only test my code in 1 hour intervals every so often). This...is a pain.
I have tried to install it using cmd but it keeps coming up with "could not find any downloads that satisfy the requirement". I think it may be to do with I made it so the .whl file opens in Visual Studio but I dont know how to make it open in nothing.
Any help would be greatly appreciated, I'm in a pretty shotty situation atm. Thank you for reading, and Thank you even more if you can help!
This question already has answers here:
Process to convert simple Python script into Windows executable [duplicate]
(8 answers)
Closed 9 years ago.
I have been working a lot on python recently, mostly using IDE. Now I have a need to make a .exe program out of my code. Have tried cx_freeze but i couldn't understand what to do. So, if anyone could either give me a link to a good guide for begginers, or another easier .py to .exe program, I would be grateful.
PS
I am using Python 3.3.
Try py2exe..
Install py2exe in your system, then generate a setup file as shown here
Thats it. Your .exe file will be created.
This question already has answers here:
Py2exe for Python 3.0
(5 answers)
Closed 8 years ago.
I would like to deliver the application to my client, who don't have any computer knowledge, therefore, I don't wanna to let him/her to use terminal to execute my script. How can I make a single package, and let the user double click and execute?? Is there any way to do so??
Moreover, is this possible to package the python runtime to the application? Because the client may not wanna to install python.... I just wanna him/her running something like a .exe written from C, just double click and execute it. Any tools to do so?? Thanks.
Please recommend for Windows & Mac OS X.
Py2Exe for Windows:
http://www.py2exe.org/index.cgi/FAQ
And a brief Google leads me to Py2App for OS X:
http://svn.pythonmac.org/py2app/py2app/trunk/doc/index.html