如何在没有写权限的情况下使用Conda安装DEAP

时间:2017-10-30 15:58:02

标签: python pip conda deap

我正在尝试使用大学的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。知道我怎么能得到它吗?

2 个答案:

答案 0 :(得分:1)

您是否尝试过:

conda install -c conda-forge deap 

建议在Anaconda Website

答案 1 :(得分:0)

我必须建立一个虚拟环境才能让它发挥作用。

conda create -n myProject

source activate myProject

conda install -c conda-forge deap