On OSX, if you’ve installed one of the Adobe apps, then when you debug your Python application you’ll start getting this annoying set of errors on the console:
osascript[13514:607] Error loading /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: dlopen(/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types, 262): no suitable image found. Did find: /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: no matching architecture in universal wrapper osascript: OpenScripting.framework - scripting addition "/Library/ScriptingAdditions/Adobe Unit Types.osax" declares no loadable handlers.
Here is how you get finally get rid of this problem. Delete this file alone wont fix the problem since launching another Adobe app will more than likely recreate this file. I found this solution to work:
cd /Library/ScriptingAdditions sudo ln -s /dev/null ./Adobe\ Unit\ Types.osax
March 6, 2010 at 12:57 pm |
Does my mac adresse change if I upgrade my computer with some other hardware? For example change the graphic card?
March 15, 2010 at 2:55 pm |
No. Your MAC address is associated with the hardware component that you use to access the network: Airport card, Ethernet card, Bluetooth, … software upgrade has no impact on the MAC address.
March 6, 2010 at 11:32 pm |
Cool Thanks for the article. I am starting python and this will be a big help.