2

I would like to to install the latest Google Maps (Version 4.7 as of today) in a conda environment. The question is, how to do it in the configuration file (The YAML file) which defines the environment without using the command line

I tried looking for the latest version of Google Maps on conda-forge. Yet it is of the 2.x branch.

Mark
  • 175
  • 1
  • 6

1 Answers1

1

By looking at the answer for Using Pip to install packages to Anaconda Environment you may do something like:

name: YourName
channels:
  - conda-forge
dependencies:
  - python=3.11
  - numpy
  - scipy
  - pip
  - pip:
    - googlemaps==4.7
Royi
  • 4,640
  • 6
  • 46
  • 64