Re: Pip type error.

2014-10-30 Thread sasidhar puranam
Thank you ..it helped ! On Saturday, 21 June 2014 12:19:09 UTC+5:30, Timmy Blumberg wrote: > > This is a much needed solution to a problem that has been plaguing my > development cycle for weeks. Many "thankyous", stranger. > > On Thursday, March 27, 2014 7:06:00 AM UTC-7, Dylan F. wrote: >> >> T

Re: Pip type error.

2014-06-21 Thread Timmy Blumberg
This is a much needed solution to a problem that has been plaguing my development cycle for weeks. Many "thankyous", stranger. On Thursday, March 27, 2014 7:06:00 AM UTC-7, Dylan F. wrote: > > Thanks Brian! The out-file command with ascii encoding specified fixed > this for me. > > On Wednesday

Re: Pip type error.

2014-03-27 Thread Dylan F.
Thanks Brian! The out-file command with ascii encoding specified fixed this for me. On Wednesday, September 26, 2012 1:55:31 AM UTC-4, Brian Peiris wrote: > > Thanks John, that was useful. > This happens because powershell outputs UTF-16 by default. Another way to > fix it is by using the out-

Re: Pip type error.

2013-07-10 Thread Mark Liu
Googled this problem and came here. I was also using powershell but everything worked after I converted the requirments file to utf-8 On Wednesday, May 1, 2013 8:43:13 AM UTC-4, il...@app-loader.com wrote: > > Brilliant ! > I was using powershell. > When I switched back to good old cmd.exe pip fr

Re: Pip type error.

2013-05-01 Thread ilan
Brilliant ! I was using powershell. When I switched back to good old cmd.exe pip freeze worked fine On Saturday, July 21, 2012 9:00:50 AM UTC+3, Jauharul Fuady wrote: > > > > On Sunday, 11 March 2012 15:17:59 UTC+7, John W. wrote: >> >> I know it's weird to reply to myself, but just in case that s

Re: Pip type error.

2012-09-26 Thread Brian Peiris
Thanks John, that was useful. This happens because powershell outputs UTF-16 by default. Another way to fix it is by using the out-file command with an ascii encoding specified: pip freeze | out-file -enc ascii requirements.txt On Sunday, March 11, 2012 4:17:59 AM UTC-4, John W. wrote: > > I kn

Re: Pip type error.

2012-07-21 Thread Jauharul Fuady
On Sunday, 11 March 2012 15:17:59 UTC+7, John W. wrote: > > I know it's weird to reply to myself, but just in case that somebody has > the same problem. > > It seems that the problem it is in the requirements.txt, i created it > using powershell and "pip.exe freeze > requirements.txt" command,

Re: Pip type error.

2012-03-11 Thread John W.
I know it's weird to reply to myself, but just in case that somebody has the same problem. It seems that the problem it is in the requirements.txt, i created it using powershell and "pip.exe freeze > requirements.txt" command, which creates a file with a name that has nullbytes in it. I was ab