Intel® Distribution for Python*
Engage in discussions with community peers related to Python* applications and core computational packages.

Only python and numpy

Kapil_S_
初学者
1,953 次查看

Hello,

I wish to use Intel's python distribution for work. But I wanted to remove all unnecessary applications (packages). Is there any any python distribution (along with numpy) available ? Because numpy is enough for my application.

Thanks.

0 项奖励
1 回复
Christophe_H_Intel2
1,954 次查看

Hi Kapil,

I would suggest creating a conda environment with just Intel's python and numpy.  You will need Miniconda installed to manage environments. Then you can create a minimal environment as follows:

conda create -n ip -c intel numpy
source activate ip

This creates an environment named "ip" with Intel's numpy and its dependencies, then activates that environment, making it ready for use.

You can read more about using conda environments with Intel's Python distribution here.

Chris

0 项奖励
回复