我正在尝试构建open energy modelling framework (oemof) PyPi package的conda包,如相应manual中所述。 oemof包具有Pyomo包作为要求,我使用合适的recipe预先安装。
我的问题是我现在在构建过程中遇到错误:
Package missing in current linux-64 channels:
- pyomo >=4.2.0
我安装的Pyomo版本似乎高于4.2:
cord@crd-Laptop:~/.anaconda3/bin$ ./conda update pyomo
pyomo 4.2.10784 py35_10 cachemeorg
我的错误是什么,如何按照conda手册中的描述构建我的包?
提前致谢!
下面你可以看到我到目前为止所经历的步骤:
cord@crd-Laptop:~/.anaconda3/bin$ ./conda skeleton pypi oemof
Warning, the following versions were found for oemof
0.0.6
0.0.5
0.0.4
0.0.3
Using 0.0.6
Use --version to specify a different version.
Using url https://pypi.python.org/packages/3b/1f/5a82acf8cbcb3d0adb537346b2939cb6fa415e9c347f734af19c8a1b50d1/oemof-0.0.6.tar.gz (52 KB) for oemof.
Downloading oemof
Using cached download
Unpacking oemof...
done
working in /tmp/tmpd67mbpi2conda_skeleton_oemof-0.0.6.tar.gz
Using Anaconda Cloud api site https://api.anaconda.org
Fetching package metadata: ......
Solving package specifications: .........
The following NEW packages will be INSTALLED:
mkl: 11.3.1-0
numpy: 1.11.0-py35_0
openssl: 1.0.2g-0
pip: 8.1.1-py35_1
python: 3.5.1-0
pyyaml: 3.11-py35_1
readline: 6.2-2
setuptools: 20.7.0-py35_0
sqlite: 3.9.2-0
tk: 8.5.18-0
wheel: 0.29.0-py35_0
xz: 5.0.5-1
yaml: 0.1.6-0
zlib: 1.2.8-0
Linking packages ...
[ COMPLETE ]|###########################################################################################| 100%
Applying patch: '/tmp/tmpd67mbpi2conda_skeleton_oemof-0.0.6.tar.gz/pypi-distutils.patch'
patching file core.py
Hunk #1 succeeded at 167 with fuzz 2 (offset 1 line).
Using "UNKNOWN" for the license
Writing recipe for oemof
Done
cord@crd-Laptop:~/.anaconda3/bin$ ./conda build oemof
Removing old build environment
Removing old work directory
BUILD START: oemof-0.0.6-py35_0
Using Anaconda Cloud api site https://api.anaconda.org
Fetching package metadata: ......
Solving package specifications: .
Package missing in current linux-64 channels:
- pyomo >=4.2.0
Missing dependency pyomo, but found recipe directory, so building pyomo first
Ignoring non-recipe: pyomo
Removing old build environment
Removing old work directory
BUILD START: oemof-0.0.6-py35_0
Fetching package metadata: ......
Solving package specifications: .
Package missing in current linux-64 channels:
- pyomo >=4.2.0
cord@crd-Laptop:~/.anaconda3/bin$ ./conda update pyomo
Using Anaconda Cloud api site https://api.anaconda.org
Fetching package metadata: ....
# All requested packages already installed.
# packages in environment at /home/cord/.anaconda3:
#
pyomo 4.2.10784 py35_10 cachemeorg
cord@crd-Laptop:~/.anaconda3/bin$
答案 0 :(得分:1)
对于您的构建步骤,请尝试 double price;
int region;
string p;
Console.Write("Enter the total price of items : ");
price = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Select the your region.");
Console.WriteLine("1 : Pakistan");
Console.WriteLine("2 : UK");
Console.WriteLine("3 : Cortia");
p = Console.ReadLine();
if (!int.TryParse(p, out region))
{
//error handle.
}
else
{
//at this point, the region value already has the value of p;
}
。
我认为这里的问题是conda build -c cachemeorg oemof
在构建时会创建一个全新的conda环境,它将在该环境中安装所有包依赖项,包括pyomo。它通过在通道中查找它们来安装它们,并通过您当前安装的根目录中的 not 来安装它们。在此示例中,您已将pyomo作为程序包安装,但在您自己安装时,它并非来自频道列表中的频道。因此,在搜索conda频道时无法找到pyomo包。但是如果我们在列表中添加一个conda build正在查看的频道(通过conda build
标志),那么它应该可以工作。看起来cachemeorg有这个package,因此上面的命令应该可以工作。