ruby - PTY gem not found -


i have ruby 1.9.3 installed on windows. when try require gem console outputs gem not found:

require 'pty' 

which outputs:

'require': cannot load such file -- pty <loaderror> 

also tried:

gem install pty 

and got output:

could not find valid gem 'pty' in repository 

how fix this?

as far know, there no pty module implementation windows don't have pseudo-terminal capabilities.


Comments

Popular posts from this blog

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -