Posts

Showing posts from September, 2016

How to install pyqt for maya 2013

How to install pyqt for maya 2013? 1.Download python 2.6 https://www.python.org/ftp/python/2.6.6/python-2.6.6.amd64.msi (for 64 bit), or https://www.python.org/ftp/python/2.6.6/python-2.6.6.msi (32bit) 2.install python 2.6 3.Download pyqt https://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.9.6/PyQt-Py2.6-x64-gpl-4.9.6-1.exe/download (for 64 bit), or https://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.9.6/PyQt-Py2.6-x86-gpl-4.9.6-1.exe/download (for 32 bit) 4.install pyqt4 5.Go to " C:\Python26\Lib\site-packages\ " and copy the all files then " C:\program files\autodesk\maya2013\Python\lib\site-packages\maya\ "  paste all files and folders 6.Now open your maya 2013 7.Script editor 8. from PyQt4.QtCore import * 9.Done!!! 10.If You like it subscripe my channel https://www.youtube.com/channel/UC6Yh85NATpW4-J6LEs5hqpQ 11.Thank you
                                               python programming language Introduction: python is the open source programming and interpreted language. Python programming is everywhere like a python snack  :) Python coding made very easy way!!! python programming major used in following department: 1. 3D programming 2. Game programming 3. Network programming 4. Android programming and ect... Example code: 1.Run time input: import os print "hello world" name = raw_input("Enter your name") print "hi "+ name 2.for loop: import os for i in range(0,6):      print "number: " + str(i)