python - Pycharm interpreter path contains unicode character -


i trying run basic python code works under spyder, on last version of pycharm:

a = 2 print 

here error message get:

file "c:\users\fran�ois\anaconda\lib\ntpath.py", line 84, in join     result_path = result_path + p_path unicodedecodeerror: 'ascii' codec can't decode byte 0xe7 in position 11: ordinal not in range(128)  process finished exit code 1 

as see, pycharm can not handle fact 1 of folder called "françois" (french first name) , since interpreter in folder, launches error.

my pycharm python interpreter path set following:

c:\users\françois\anaconda\python.exe 

so how can solve problem without renaming folder in computer? not have access move interpreter location. looked @ options couldn't figure out.


Comments

Popular posts from this blog

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -