No Brain Studios - Maya Groomer's Tool
  • WELCOME
  • Installation
    • System Requirement
    • Installation - Standard
    • Installation - Custom Folder
    • Problem/Errors
      • URLError
      • ImportError
      • PermissionError
      • ModuleNotFoundError
      • UnicodeError
      • URLOpenError[SSL:1129]
      • URLOpenError[SSL:1076]
    • Getting an Update
  • Maya Tools
    • Curve Extract
    • Curve Fill
    • Curve Trim
    • Curve Smart Flip
    • Curve CV Rebuild Tool
    • Curve Snap Tool
    • Curve Cut Tool
    • Paint FX to Curves
    • Curve Clump/Repel
    • Curve Tool Kit
    • Curve to Proxy Managers
      • Curve to Tube Proxy Manager
      • Curve to Card Proxy Manager
      • Curve to Twist Proxy Manager
    • Hair Tube Builder
    • Curve to Curls
    • Curve to Braids
    • Maya Curve Color Tool
    • Curve Populate
    • Curve Copy/Paste
    • Curve Pivot to Root
    • Poly Resolve
    • Interactive Curve Tools
      • Marking (Radial) Menu
  • XGen Tools
    • Guide Color Tool
    • Guide Toggle
    • Auto Description Switch
    • XGen Param, Attr/Modifier Match Tools
      • Shading Parameter Tool
      • XGen Attributes/Modifier Match Tool
    • Global Expression Sort
    • Multi-Clump Bake
    • Guide Cut
    • Guide Check
    • Guide Snap
    • Guides To Curves
    • XGen PTEX Tool
    • XGen IFF Tool
    • Multi Description Preview
    • XGen Blendshape Tool
    • XGen Spline Transfer
    • XGen Rename Collection
    • XGen Rename Description
    • XGen Rename Geometry/Scalp
    • XGen Rename Modifiers
    • XGen Deep Backup
  • 🇨🇳中国使用者说明
    • 由爱发电订阅 - 取得Maya Groomer's Tool 授权
    • 安装指南
    • 取得与安装版本更新
  • Version Log
    • V14.03
    • V14.02
    • V13.07
    • V13.06
Powered by GitBook
On this page
  1. Installation
  2. Problem/Errors

URLOpenError[SSL:1076]

Error: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer cerficiate (_ssl.c:1076)>

SOLUTION:

  • Groomer's Tool is not tested with Apple Mac and will have no support for it. If you must run the tool with an Apple Mac, please try this instead.

  • For MAC, the default Maya folder is located at 'Users/YourName/Library/Preferences/Autodesk/maya/2024/scripts/' Please put the xgtc folder in this path and run the following code.

  • If you are installing Groomer's Tool in Maya's default folder, the folder path is /Users/YourName/Library/Preferences/Autodesk/maya/2024/scripts/

import ssl
ssl._create_default_https_context = ssl._create_unverified_context

import xgtc
import xgToolsUI_user_sub
xgToolsUI_user_sub.XgtRun()
  • If you are installing Groomer's Tool in a custom folder path (E:/3rdPartyTools/)

import ssl
ssl._create_default_https_context = ssl._create_unverified_context

import sys
xgtcPath = 'E:/3rdPartyTools/'# change the path in green to the directory that you put the xgtc folder in. Make sure to use '/' forward slashes
if xgtcPath not in sys.path:
    sys.path.append(xgtcPath)
    
import xgtc
import xgToolsUI_user_sub

xgToolsUI_user_sub.XgtRun()

PreviousURLOpenError[SSL:1129]NextGetting an Update

Last updated 1 month ago