简体   繁体   English

如何在Anaconda上安装python iexfinance软件包?

[英]How to install python iexfinance package on Anaconda?

What is the exact command for installation of the python iexfinance package when using the Anaconda command prompt? 使用Anaconda命令提示符时,安装python iexfinance软件包的确切命令是什么? Using the pip commands mentioned under "install" here does not work. 使用此处“安装”下提到的pip命令不起作用。 https://pypi.python.org/pypi/iexfinance https://pypi.python.org/pypi/iexfinance

It seems this package is not available through anaconda distribution. 似乎该软件包无法通过anaconda发行。

Usually, besides the conda install <package> command, you have the alternative: 通常,除了conda install <package>命令外,您还可以选择:

conda install -c conda-forge <package>

In your case, you can create a conda environment: 就您而言,您可以创建一个conda环境:

conda create --name <yourenv> python=3.5

then source activate <yourenv> , 然后source activate <yourenv>

and inside this environment you install your package, like so: 然后在此环境中安装软件包,如下所示:

 pip3 install iexfinance

then proceed to install other packages with conda install <package> as you see fit. 然后根据需要使用conda install <package>继续安装其他软件包。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM