pip install bpython 在Mac安装没有什么问题, 一旦到了Windows就出现报错:
from fcntl import ioctl
ImportError: No module named fcntl
新建一个: fcntl.py文件, 将其存放Python的安装目录: C:\Python27\Lib 下.
该文件里面代码为:
def fcntl(fd, op, arg=0):
return 0
def ioctl(fd, op, arg=0, mutable_flag=True):
if mutable_flag:
return 0
else:
return ""
def flock(fd, op):
return
def lockf(fd, operation, length=0, start=0, whence=0):
return
想知道原理, 请看: Stackflow
文件放到指定位置后, 重新调用 bpython, 如果没有报错,祝贺运气不错. 如果出现了问题下面的衍生问题2 ……
解决问题1, 接着出来了问题2.
from termios import TIOCGWINSZ
ImportError: No module named termios
没有解决这个问题, 好吧. 只好先用Ipython, 然后:
pip uninstall bpython
这个坑先记着.