I've been following a guide in how to install Miniconda3 and use that to install different packages as NumPy and SciPy.
However, after installing Miniconda3 and opened a new project in PyCharm, the guide tells me that I should write:
conda install numpy
...which returned:
Fetching package metadata: Could not connect to https://repo.continuum.io/pkgs/free/noarch/
Could not connect to https://repo.continuum.io/pkgs/pro/win-32/
Could not connect to https://repo.continuum.io/pkgs/free/win-32/
.Could not connect to https://repo.continuum.io/pkgs/pro/noarch/
...
Error: No packages found in current win-32 channels matching: numpy
You can search for this package on Binstar with
binstar search -t conda numpy
You may need to install the Binstar command line client with
conda install binstar
Which opted me to try:
conda install binstar
...which gave me the same error (even including the last line opting me to try conda install binstar
).
I also tried, as a reference, to use conda update conda
which resulted in Error: No packages found in current win-32 channels matching: conda
.
I've added Miniconda when installing into my PATH variables. Does anybody have any clue regarding this?
EDIT: I have 32 bit system, and I've installed the 32 bit version of Miniconda.