我正在尝试使用大学的DEAP进化算法包。我没有使用pip的权限,所以我必须使用Conda。当我在Anaconda提示中尝试<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body>
<GetRetailTransactions xmlns="example.com/">
<parameters>
<RetailTransactionsParameters>
<GetNotExportedOnly>0</GetNotExportedOnly>
<GetNotRetrunsOnly>0</GetNotRetrunsOnly>
<FromDate>20170518</FromDate>
<ToDate>20170518</ToDate>
<TransactionTypeFilter>
<TransactionType>2</TransactionType>
</TransactionTypeFilter>
</RetailTransactionsParameters>
</parameters>
</GetRetailTransactions>
</Body>
</Envelope>
时,我得到conda install deap
。知道我怎么能得到它吗?
答案 0 :(得分:1)
答案 1 :(得分:0)
我必须建立一个虚拟环境才能让它发挥作用。
conda create -n myProject
source activate myProject
conda install -c conda-forge deap