How to install win-32 package on a 64-bit system with conda install

若如初见. 提交于 2019-12-06 15:52:09

问题


I am looking to install the package pyspharm

I am running the 64-bit Windows and have the 64-bit version of Anaconda installed.

However, whe I look for packages with

anaconda search -t conda pyspharm

It appears as if there are no channels with a package made for the win-64 platform.

Is there any way I can still install it?


回答1:


Crate a 32bit python environment:

set CONDA_FORCE_32BIT=1
conda create -n py27_32bit python=2.7
enable py27_32bit
conda install --channel https://conda.anaconda.org/conda-forge pyspharm

Just remember to set CONDA_FORCE_32BIT= (set empty) if you are going to use the root environment 64bit



来源:https://stackoverflow.com/questions/40271187/how-to-install-win-32-package-on-a-64-bit-system-with-conda-install

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!