This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Jarek.Śmiejczak
Recipients Jarek.Śmiejczak, ncoghlan, vinay.sajip, vstinner
Date 2014-01-07.21:15:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389129345.17.0.086662598383.issue20140@psf.upfronthosting.co.za>
In-reply-to
Content
@Vinay.Sajip
After adding change you suggested i'm getting different error:
---
C:\Users\Jarosław>pip install virtualenv
Downloading/unpacking virtualenv
  Running setup.py (path:c:\users\jarosa~1\appdata\local\temp\pip_build_Jaros│a
\virtualenv\setup.py) egg_info for package virtualenv

    warning: no previously-included files matching '*' found under directory 'd
cs\_templates'
    warning: no previously-included files matching '*' found under directory 'd
cs\_build'
Cleaning up...
Exception:
Traceback (most recent call last):
  File "c:\python27\lib\site-packages\pip\basecommand.py", line 122, in main
    status = self.run(options, args)
  File "c:\python27\lib\site-packages\pip\commands\install.py", line 270, in ru

    requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bund
e=self.bundle)
  File "c:\python27\lib\site-packages\pip\req.py", line 1211, in prepare_files
    req_to_install.assert_source_matches_version()
  File "c:\python27\lib\site-packages\pip\req.py", line 451, in assert_source_m
tches_version
    % (display_path(self.source_dir), version, self))
UnicodeDecodeError: 'ascii' codec can't decode byte 0xb3 in position 62: ordina
 not in range(128)

Traceback (most recent call last):
  File "c:\python27\Scripts\pip-script.py", line 9, in <module>
    load_entry_point('pip==1.5', 'console_scripts', 'pip')()
  File "c:\python27\lib\site-packages\pip\__init__.py", line 185, in main
    return command.main(cmd_args)
  File "c:\python27\lib\site-packages\pip\basecommand.py", line 161, in main
    text = '\n'.join(complete_log)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xb3 in position 77: ordina
 not in range(128)

C:\Users\Jarosław>
---

It looks like this needs a little more changes in pip to solve this issue.
What's strange: In Windows 8.1, name of home directory is first name saved in your Microsoft Profile (if you log via this profile of course), so it should be a pretty common issue (i think).

Thanks for your fast reaction and support.
History
Date User Action Args
2014-01-07 21:15:45Jarek.Śmiejczaksetrecipients: + Jarek.Śmiejczak, vinay.sajip, ncoghlan, vstinner
2014-01-07 21:15:45Jarek.Śmiejczaksetmessageid: <1389129345.17.0.086662598383.issue20140@psf.upfronthosting.co.za>
2014-01-07 21:15:45Jarek.Śmiejczaklinkissue20140 messages
2014-01-07 21:15:44Jarek.Śmiejczakcreate