... this is the cave engine project manager and if you don't know cave cave is a 3D easy to use ... python game engine for you to make games for computer Windows or Linux ... from GuilhermeTeres !
Is a blog about python programming language. You can see my work with python programming language, tutorials and news.
Showing posts with label video. Show all posts
Showing posts with label video. Show all posts
Sunday, December 29, 2024
Saturday, July 17, 2021
Python Qt6 : Install and use python with Visual Studio.
Visual Studio is a very good tool for python programming language development.
Today I will show you how to use it with Visual Studio on a Windows operating system.
If you don't have Python install then start the Visual Studio installer and from all presents select the Python development workload.
Start Visual Studio and open a folder or open an empty file and save with the python language-specific extension: py.
Select the Python environment and add the new package with pip tool.
This is the python script I used to test:
import sys
from PyQt6.QtWidgets import QApplication, QWidget
def main():
app = QApplication(sys.argv)
w = QWidget()
w.resize(250, 200)
w.move(300, 300)
w.setWindowTitle('Simple')
w.show()
sys.exit(app.exec())
if __name__ == '__main__':
main()
You can see the video tutorial about how you can use it:
Posted by
Cătălin George Feștilă
Labels:
2021,
PyQt6,
python,
python 3,
tutorial,
tutorials,
video,
video tutorial,
Visual Studio,
windows
Subscribe to:
Posts (Atom)