-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since last update to pixplot package, pip install pixplot does not work properly #96
Comments
@shenglih sorry about that! This is pretty interesting. I think the Linux case is easier to diagnose. It seems your Linux pip has somehow broken. Could you please try to reinstall pip with The Mac case is more mysterious. On that OS you might want to uninstall Anaconda if it's already installed, then install Anaconda afresh (that worked for this user). If you try one or both of those suggestions please feel free to let me know how they go and I'll be happy to follow up! |
@duhaime thanks so much! I've tried both now the error is with pandas... |
@shenglih aha! I have a hunch you're running Python 2.7--is that right? It seems pandas stopped supporting Python 2.7 in version Are you able to switch to Python 3.5 or 3.6? Either should make development easier than 2.7 will... I'd install Anaconda (on Linux and Windows), then create a Python 3.5 environment with: conda create --name 3.5 python=3.5 That creates an environment named "3.5" that uses Python version 3.5. Then to use that environment, just run Feel free to try that out and report back on how it goes! |
@shenglih I wanted to check in to see if you're still having troubles with pip. If so please feel free to follow up! If not, is it safe to close this issue? |
@shenglih I'm going to close this out but if you have any further trouble please feel free to follow up and we can help! |
hi, i'm trying this on a windows 10 machine, conda installed. made new 3.7 environment, installed pixplot as per readme, getting
...? |
I'm facing the same error. Have you solved this problem? |
I'm facing the same error. Have you solved this problem? |
I have not. Will try to explore it more once i have a bit more time |
@shawngraham @tianyilt @kongxdesign sorry to have been out of the loop on this issue! It looks like one path to victory here might be to install anaconda and then create a virtual environment: conda create --name=3.7 python=3.7
source activate 3.7 Then, before trying to pip install pixplot, could you try to install hdbscan with conda using the following? conda install -c conda-forge hdbscan After you run that line, you should be able to:
If you get a chance to try that out, could I please ask you to let us know how it goes? |
Hi, I'm working on WIndows 10. I've tried it and solved creating a virual environment in py 3.6 not 3.7 conda create --name=3.6 python=3.6 |
on Mac it returned this installation error:
TSNE<SplitTree, &(euclidean_distance(DataPoint const&, DataPoint const&))>::run(dou
ble*, int, int, double*, int, double, double, int, int, int, int, bool, int, double, double
, double*) in tsne.cpp.o
TSNE<SplitTree, &(euclidean_distance_squared(DataPoint const&, DataPoint const&))>:
:run(double*, int, int, double*, int, double, double, int, int, int, int, bool, int, double
, double, double*) in tsne.cpp.o
VpTree<DataPoint, &(euclidean_distance(DataPoint const&, DataPoint const&))>::build
FromPoints(int, int) in tsne.cpp.o
VpTree<DataPoint, &(euclidean_distance_squared(DataPoint const&, DataPoint const&))
ERROR: Cannot find make? See above errors.
ERROR: Failed building wheel for MulticoreTSNE
Running setup.py clean for MulticoreTSNE
Failed to build MulticoreTSNE
ERROR: Could not build wheels for hdbscan which use PEP 517 and cannot be installed directly
on linux 16.4 it returned
Traceback (most recent call last):
File "/usr/local/bin/pip", line 5, in
from pip._internal.cli.main import main
ImportError: No module named 'pip._internal.cli.main'
The text was updated successfully, but these errors were encountered: