我是Julia的包管理员的新手,我在安装GLPK和LinProgGLPK时遇到了麻烦.
我已经运行Pkg.Init()并成功安装了Curl Pkg.add("Curl").但是,当我尝试安装GLPK或LinProgGLPK时(使用Pkg.add("GLPK")和Pkg.add("LinProgGLPK")),我得到以下消息:
MESSAGE: Installing BinDeps v0.0.0
ERROR: Path BinDeps already exists! Please remove to allow installation.
in _resolve at pkg.jl:345
in anonymous at no file:163
in cd at file.jl:26
in cd_pkgdir at pkg.jl:42
in add at pkg.jl:143
in add at pkg.jl:175
Run Code Online (Sandbox Code Playgroud)
我似乎得到了依赖于BinDeps(包括Winston)的其他软件包的相同消息.
我已经打过电话Pkg.rm("BinDeps"),Pkg.add("BinDeps"),Pkg.update(),和Pkg.resolve(),然后回到尝试添加GLPK,但同样的消息仍然存在.我还输入~/.julia了删除BinDeps文件夹,但这也无效.我错过了什么?
PS我在Linux Ubuntu中运行julia.