Error setting checkboxes using virtualenv

I want to customize the flask, so I follow the instructions on the Flask installation website. I got an error when I used "virtualenv venv". Meanwhile the python version is 2.7.6

semihy@semihy-Inspiron-5537:~/MasaΓΌstΓΌ/flaskproject$ virtualenv env
New python executable in env/bin/python
Traceback (most recent call last):
  File "<string>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 17: ordinal not in range(128)
ERROR: The executable env/bin/python is not functioning
ERROR: It thinks sys.prefix is u'/home/semihy/Masa\xfcst\xfc/flaskproject' (should be u'/home/semihy/Masa\xfcst\xfc/flaskproject/env')
ERROR: virtualenv is not compatible with this system or executable

      

+3


source to share


1 answer


The problem is that you have special characters in your file path. /home/semihy/Masa\xfcst\xfc/flaskproject



You will need to create a folder in a new location with only valid ASCII characters, for example. /home/semihy/Masa/flaskproject

+2


source







All Articles