Jump to content

Search the Community

Showing results for tags 'python_wrapper'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Lounge/General chat
    • Education
    • Jobs
    • Marketplace
  • Houdini
    • General Houdini Questions
    • Effects
    • Modeling
    • Animation & Rigging
    • Lighting & Rendering + Solaris!
    • Compositing
    • Games
    • Tools (HDA's etc.)
  • Coders Corner
    • HDK : Houdini Development Kit
    • Scripting
    • Shaders
  • Art and Challenges
    • Finished Work
    • Work in Progress
    • VFX Challenge
    • Effects Challenge Archive
  • Systems and Other Applications
    • Other 3d Packages
    • Operating Systems
    • Hardware
    • Pipeline
  • od|force
    • Feedback, Suggestions, Bugs

Product Groups

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Name


Location


Interests

Found 1 result

  1. Hello. I setup HOUDINI_PATH in my python wrapper, but it simple don't work. Nothing from specified folder loading. This is my wrapper. import os, sys, subprocess # HOUDINI_MAJOR_RELEASE = '13' HOUDINI_MINOR_RELEASE = '0' HOUDINI_BUILD_VERSION = '547' # HOUDINI_INSTALL_PATH = '/Library/Frameworks/Houdini.framework/Versions/' # HOUDINI_BUILD = '%s.%s.%s' % (HOUDINI_MAJOR_RELEASE, HOUDINI_MINOR_RELEASE, HOUDINI_BUILD_VERSION) HFS = HOUDINI_INSTALL_PATH + HOUDINI_BUILD + '/resources' os.environ['HFS'] = HFS # '''Setup PATH location''' HB = HFS+'/bin' os.environ['PATH']= os.path.pathsep.join([HB,os.environ['PATH']]) #this is not work CUSTOMHOUDINIFOLDER = 'Users/andeliseev/Documents/houdiniCustom' os.environ['HOUDINI_PATH'] = CUSTOMHOUDINIFOLDER + ';&' HOME = '/Users/andeliseev/Dropbox/houdini/pref' os.environ['HOME'] = HOME JOB = os.path.dirname(os.path.realpath(__file__)) os.environ['JOB'] = JOB if __name__ == '__main__': startpath = ['%s/houdinifx' % HB] subprocess.Popen(startpath)
×
×
  • Create New...