Flask Installation Error With Virtualenv
I want to setup flask so I follow the instructions on Flask installation website. I got error when I used 'virtualenv venv'.Meanwhile version of python is 2.7.6 semihy@semihy-Insp
Solution 1:
The issue 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, e.g.
/home/semihy/Masa/flaskproject
Post a Comment for "Flask Installation Error With Virtualenv"