问题
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