-1

In Pycharm, I can't find module tsne in settings. How to download in pycharm? When I try to run command in cmd as:

conda install -c conda-forge tsne

The command exits with this error:

C:\Users\hp\PycharmProjects\pythonProject>conda install -c conda-forge tsne
Collecting package metadata (current_repodata.json): failed

CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://conda.anaconda.org/conda-forge/win-64/current_repodata.json>
Elapsed: -

An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.
'https//conda.anaconda.org/conda-forge/win-64'

How can I resolve this issue?

  • Please try searching the CondaHTTPError - that is very common for Windows users and unlikely needs a new question. – merv Jul 07 '23 at 15:31

1 Answers1

0

Try with pip - tsne Pypi

pip install tsne

If it's an issue with conda API then download binaries from conda tsne and then

conda install c:path/path/to/downloaded_binary

In the documentation for conda they have mentioned like this. so try if the above snippet doesn't work

conda install -c maxibor tsne