Open MayukhSobo opened 6 years ago
I see the same issue on Mac, installed with pip
.
Attempting to run on 8 cores, but says it's only running on 1.
Not a great solution, but in the short term this fork has Mac-specific install instructions that worked for me: https://github.com/sg-s/Multicore-TSNE
ouch -- i just nuked that repo, thinking this would be OK and now i find this bug. fml
update: repo restored
I had this problem on my Mac as well. After reading the notes form @sg-s (huge help!), I was able to come up with a relatively simple fix.
brew install gcc
gcc-8
and g++-8
to /usr/local/bin/
(found via which gcc-<version>
)export CC=/path/to/gcc-8; export CXX=/path/to/g++-8
Multicore-TSNE
repo and pip install .
from the top levelIt's possible that you only need to set he correct C++ compiler (and not the C compiler), but I didn't test trying to make it simpler.
Just faced the same problem and the @jwittenbach solution helped! Thanks!
The solution by @jwittenbach also worked for me. The below formulation the command of point 3. might be easier to use export CC=$(which gcc-8); export CXX=$(which g++-8).
@jwittenbach these settings fail to create the .so file in the installation module.
I am seeing
this verbose message even when my
n_jobs=4