在尝试克隆git repo时 - jpeginfo专门 - 发生错误,
class Live(object):
_the_oldest = 0
def __init__(self,age,name):
self.age=age
self.name=name
if Live._the_oldest < self.age:
Live._the_oldest = self.age
@staticmethod
def the_oldest():
return Live._the_oldest
@staticmethod
def Print():
print(Live._the_oldest)
显然,'aux'目录名是Windows系统上的保留名称。我不知道该怎么办?
尝试在cygwin和mingw下克隆它会导致相同的结果。
有没有人有任何想法最简单的方法,首先 - 克隆上述jpeginfo存储库,第二 - 在Windows下构建它?
答案 0 :(得分:0)
除非项目更改该文件夹的名称(as others did),否则一个解决方案是install docker和clone the repo in a container。
考虑jpeginfo
仅在Unix平台(Linux,OS X(Snow Leopard),Solaris,IRIX和HP-UX)上进行测试,该容器也将是正确的构建环境。