本文介绍了安装Deap for Python(Spyder)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我应该如何从spyder安装python的deap软件包?
How should I install deap package for python from spyder?
我尝试过:
pip install deal
import deap
deap.download()
推荐答案
假定未安装deap,请输入:
Assuming deap is not installed, type:
pip install deap
如果您得到答复
Collecting deap
Installing collected packages: deap
Successfully installed deap-1.0.2
然后,您刚刚安装了deap,并准备好将其import
插入到您的项目中.
Then you have just installed deap and you are ready to import
it into your projects.
如果收到响应Requirement already satisfied (use --upgrade to upgrade): deap in ./Path/To/site-packages
,则说明已经安装了deap,并且已准备好import
.
If you get the response, Requirement already satisfied (use --upgrade to upgrade): deap in ./Path/To/site-packages
, deap is already installed and you are ready to import
it.
这篇关于安装Deap for Python(Spyder)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!