Каков наилучший способ установки rpy2 3.3.2 в среде conda (работает Python 3.8)? - PullRequest
0 голосов
/ 28 апреля 2020

Я попытался установить последнюю версию rpy2 на Ma c в среде conda, зайдя в среды внутри Conda Navigator, щелкнув по моей среде и выполнив поиск rpy2. Однако эта последняя версия не отображается.

Я также попытался выполнить установку через терминал с помощью:

pip install rpy2

. При этом выдается следующее сообщение об ошибке:

Could not fetch URL https://pypi.python.org/simple/rpy2/: There was a problem confirming  the ssl certificate: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:661) - skipping
Could not find a version that satisfies the requirement rpy2 (from versions: )
No matching distribution found for rpy2

Я также пытался:

conda install rpy2==3.3.2 

Но получил следующую ошибку:

Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.

PackagesNotFoundError: The following packages are not available from current channels:

  - rpy2==3.3.2

Current channels:

  - https://repo.anaconda.com/pkgs/main/osx-64
  - https://repo.anaconda.com/pkgs/main/noarch
  - https://repo.anaconda.com/pkgs/r/osx-64
  - https://repo.anaconda.com/pkgs/r/noarch
  - https://conda.anaconda.org/conda-forge/osx-64
  - https://conda.anaconda.org/conda-forge/noarch

To search for alternate channels that may provide the conda package you're
looking for, navigate to

    https://anaconda.org

and use the search bar at the top of the page.

Каков наилучший способ установить этот пакет и сделать его доступным в среде anaconda?

...