Installing Setup on Server error

Hi,
When I am install The Setup on Server That Time it shows the following Error:

@indictransnew:~/webapps/zoho$ bench init frappe­bench && cd frappe­bench
Already using interpreter /home/gangadhar/webapps/zoho/bin/python
Traceback (most recent call last):
  File "<string>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 35: ordinal not in range(128)
ERROR: The executable env/bin/python is not functioning
ERROR: It thinks sys.prefix is u'/home/gangadhar/webapps/zoho/frappe\xadbench' (should be u'/home/gangadhar/webapps/zoho/frappe\xadbench/env')
ERROR: virtualenv is not compatible with this system or executable
Traceback (most recent call last):
  File "/home/gangadhar/webapps/zoho/bin/bench", line 9, in <module>
    load_entry_point('bench==0.92', 'console_scripts', 'bench')()
  File "/home/gangadhar/webapps/zoho/bench­repo/bench/cli.py", line 60, in cli
    bench()
  File "/home/gangadhar/webapps/zoho/local/lib/python2.7/site-packages/click/core.py", line 700, in __call__
    return self.main(*args, **kwargs)
  File "/home/gangadhar/webapps/zoho/local/lib/python2.7/site-packages/click/core.py", line 680, in main
    rv = self.invoke(ctx)
  File "/home/gangadhar/webapps/zoho/local/lib/python2.7/site-packages/click/core.py", line 1027, in invoke
    return _process_result(sub_ctx.command.invoke(sub_ctx))
  File "/home/gangadhar/webapps/zoho/local/lib/python2.7/site-packages/click/core.py", line 873, in invoke
    return ctx.invoke(self.callback, **ctx.params)
  File "/home/gangadhar/webapps/zoho/local/lib/python2.7/site-packages/click/core.py", line 508, in invoke
    return callback(*args, **kwargs)
  File "/home/gangadhar/webapps/zoho/bench­repo/bench/cli.py", line 165, in init
    no_auto_update=no_auto_update, frappe_path=frappe_path, frappe_branch=frappe_branch)
  File "/home/gangadhar/webapps/zoho/bench­repo/bench/utils.py", line 63, in init
    setup_env(bench=path)
  File "/home/gangadhar/webapps/zoho/bench­repo/bench/utils.py", line 107, in setup_env
    exec_cmd('virtualenv -q {} -p {}'.format('env', sys.executable), cwd=bench)
  File "/home/gangadhar/webapps/zoho/bench­repo/bench/utils.py", line 104, in exec_cmd
    raise CommandFailedError(cmd)
bench.utils.CommandFailedError: virtualenv -q env -p /home/gangadhar/webapps/zoho/bin/python
(zoho)gangadhar@indictransnew:~/webapps/zoho$ python --version
Python 2.7.6

Thanks

Looks like you copy pasted bench init frappe-bench from a word doc. Word sometimes replaces hyphens with a windows-1252 encoded hyphen.

print unicode(b'\xad', 'windows-1252')

Better use bench repo readme file for copy paste. You are asking for trouble when you use MS Word or MS Excel for copy pasting code.

Hi,@anand
thanks it work.