Hi, I aready install the SDK three times and, always when I want create a project, this error apeared:
Traceback (most recent call last): File "C:\Users\Ícaro\AppData\Roaming\Titanium\mobilesdk\win32\2.1.2.GA\project.py", line 136, in <module> main(args, options.update_platforms) File "C:\Users\Ícaro\AppData\Roaming\Titanium\mobilesdk\win32\2.1.2.GA\project.py", line 31, in main directory = os.path.abspath(os.path.expanduser(args[3].decode("utf-8"))) File "C:\Titanium Studio\plugins\com.appcelerator.titanium.python.win32_1.0.0.1338515509\python\lib\encodings\utf_8.py", line 16, in decode return codecs.utf_8_decode(input, errors, True) UnicodeDecodeError: 'utf8' codec can't decode byte 0xcd in position 9: invalid continuation byteHelp me! P.S.: My OS is a Win 7 x64.
3 Answers
Accepted Answer
From what I read, the creation script seems to have problems with the Í character.
The message states:
UnicodeDecodeError: 'utf8' codec can't decode byte 0xcd in position 9:And if you have a look at the 9th character in your path: (keep in mind that the index begins at 0)
C:\Users\Ícaro\...
Looks like you found a bug, you should file it in the JIRA tool.
In the mean time, I'm afraid your only option would be to re-install the SDK in another directory. (one who doesn't have UTF-8 characters)
For Windows, place your titanium studio, workspace, and libraries in folders that do not contain spaces.
This solves a lot of problems.
Yeah, i started a new user with name 'Dev', and a lot of IDEs (who don't work before) works fine! Of course I have to reinstall all...
Your Answer
Think you can help? Login to answer this question!